C++ 中的C_str()函数用法
int main()
{
string path;
path="ansf";
cout<<path<<endl;;
printf("%s",path.c_str());
return 0;
}
两次都是输出 anaf
有情怀的普通人
int main()
{
string path;
path="ansf";
cout<<path<<endl;;
printf("%s",path.c_str());
return 0;
}
两次都是输出 anaf