标准库std::string判断相等的问题

std::string s = "123";
std::string s1 = "123";
s1.push_back('\0');
bool b = (s == s1);

按照C字符串的规则,我们能判断“123\0”与"123\0\0"是一样的,但上面的结果是b为false,在某些情况下可能会踩坑。所以如果我们要根据C字符串的规则比较两个字符串时,应该使用:bool b = (strcmp(s.c_str(), s1.c_str()) == 0);来判断两字符串是否相等。

你可能感兴趣的:(C/C++,经验,std::string判断相等,std::strin,坑)