string s;
bool b[] = {s=="", s==s.c_str(), s.c_str()==""};
套
b[] = {true, true, false};
为什么是b[2]假的?
如果A==B和A==C,那不应该暗示B==C吗?
string s;
bool b[] = {s=="", s==s.c_str(), s.c_str()==""};
套
b[] = {true, true, false};
为什么是b[2]假的?
如果A==B和A==C,那不应该暗示B==C吗?