c++中string是类类型吗

2024-10-30 08:10:25
推荐回答(3个)
回答1:

string就是一个类,在std命名空间中

回答2:

class才是类,string相当于C语言的char类型

回答3:

比如
std::string s1="hello world";
std::string s2="hello boy";
const char *cc1="hello girl";
const char *cc2="hello dog";

if (s1==cc1) {.....} //这是可以的
if (s1==s2) {.....}//这是可以的
if (cc1==cc2) {....}//这是错误的
if(strcmp(cc1==cc2)) {....}//这是可以的