printf 不能打印string 理论上讲不通,string是类,printf()只能打印基本类型。 应该用 string s; cout << s; 或 printf("%s", s.c_str());
本文共 156 字,大约阅读时间需要 1 分钟。
printf 不能打印string 理论上讲不通,string是类,printf()只能打印基本类型。 应该用 string s; cout << s; 或 printf("%s", s.c_str());
转载于:https://www.cnblogs.com/codingant/p/3478810.html