MFC中或你包含的是CString头文件,如果想用cout输出string 类型,则需要先把string类型转换char*型,如上面例子:
#include<iostream>
#include<CString>
using std::cout;
using std::string ;
using std::endl;
main()
{
string a;
a="*******";
char* b=(char*)a.c_str(); //将string类型转为char*
cout<<b<<endl;
}
原文地址:https://www.cnblogs.com/wllwqdeai/p/9750717.html
时间: 2024-10-20 14:19:00