Exceptional C++

【Exceptional C++(21)】自动转换

2018-01-30  本文已影响14人  downdemo
string s1("hello"), s2("world");
strcmp(s1, s2); // 错误
strcmp(s1.c_str(), s2.c_str()); // 正确
string s1, s2, s3;
s1 = s2 - s3; // 或许本来想要+
上一篇下一篇

猜你喜欢

热点阅读