在编写ros时中文乱码问题

加入

setlocale(LC_ALL,"");

例如:

#include "ros/ros.h"

int main(int argc, char *argv[])

{

//解决乱码

setlocale(LC_ALL,"");

ros::init(argc,argv,"hello_cc");

ROS_INFO("hello/lala拉拉三大");

/* code */

return 0;

}

你可能感兴趣的:(ros,机器人,ubuntu,linux)