您可以简单地通过 put 比较两个字符串string1==string2
吗?
void ex_file_licensing::compare_license(const std::string &reference,
const std::string &result)
{
if (reference == result)
cout << "It's the same" << endl;
else
cout << "It's diffrent" << endl;
return;
}
如果是的话,这段代码会正常工作还是我应该做一些修改。
谢谢大家