printf和cout的区别
问题描述: printf("%s",string)出现乱码 与 cout << string 无乱码 C标准输入输出(stdio)的方法是借助输出函数printf和scanf printf输出格式:%[标志][输出最小宽度][.精度][长度] %c 输出单个字符 %d /i以十进制形式输出带符号整数 %e/E以指数形式输出单精度实数 %f 以小数形式输出单双精度实数 %o 以八进制形式输出无符号整数 printf("%s",string)----->> printf("%s",string.c_str())==cout<<string; C++中iostream的方法是cout/cin cout实际是一个iostream类的对象,每次调用的时候就会输出对应的字符串,调用的实际上就是成员运算符函数operator<< iostream::operator<< 对于各种C++基本数据类型的重载 const 类名 & operator<< (int value)const;//对整型变量进行重载 const 类名 & operator<< (char* str)const;//对字符串变量进行重载 来源: CSDN 作者: 毛先森 链接: https://blog.csdn.net/weixin_41586854/article/details/103618055