笔者最近经常在linux下运行一些C++程序,每次用fprintf将string类型的结果写入文件时,编译以后总会出现

 警告:cannot pass objects of non-POD type ‘const struct std::basic_string<char, std::char_traits<char>, std::allocator<char> >’ through ‘...’

开始觉得警告不影响运行就没有在意,但是写入的txt文件里面所有string类型的内容总是乱码。

细细看了一下警告,将fprintf(file,"%s,%u,%u,%u\n",map_it->first,res_vec[0],res_vec[1],res_vec[2]);

改为

fprintf(file,"%s,%u,%u,%u\n",map_it->first.c_str(),res_vec[0],res_vec[1],res_vec[2]);

map定义为  map<string,unsigned int>

这样就不会警告了

还要注意的是,将linux下生成的文件传输到windows之前,要在vim下进行  set ff=dos

将文件格式设置为dos

 

fprintf是C/C++中的一个格式化写-库函数,其作用是格式输出到一个流/文件中;原型是int fprintf( FILE *stream, const char *format, [ argument ]...),fprintf()函数根据指定的format(格式)发送信息(参数)到由stream(流)指定的文件。在写入string时可能会发生某些格式转换,这样就会出现乱码,所以转化成const char*的格式

Logo

更多推荐