查看以下代码
#include <string>
#include <assert.h>
int _tmain(int argc, _TCHAR* argv[])
{
char cstr[8] = {'t','e','s','t','\0','\0','\0','\0'};
std::string str1;
str1.assign(std::begin(cstr), std::end(cstr));
assert(str1.length() == 8);
std::string str2("test");
assert(str2.length() == 4);
// Unexpected
assert(str1 != str2);
assert(str1.compare(str2) != 0);
// Expected
assert(strcmp(str1.c_str(), str2.c_str()) == 0);
return 0;
}
在VS 2013中,所有断言都通过了,乍一看可能会令人惊讶。但是,我相信如果仔细阅读每个涉及的方法的规范,那么很明显这确实是预期的行为。但这是预期的吗?我认为事实并非如此。有没有一种简单的方法来比较两个 std :: string 对象,比如 strcmp()会做什么?
答案 0 :(得分:2)
我可以想出两种比较方法:
operator==
(不要添加不需要的尾随空终止符)。strcmp
。