标签:
//strcmp只能运用于数组的比较
//string类可以用成员函数compare()
//即a.compare(b)
//例如
string a="1234";
string b="1234";
a.compare(b)返回值=0
string a="1234";
string b="2345";
a.compare(b)返回值<0
string a="1234";
string b="1234";
a.compare(b)返回值>0
标签:
原文地址:http://www.cnblogs.com/Zory/p/5332631.html