C++String类的比较

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++String类的比较相关的知识,希望对你有一定的参考价值。

//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

以上是关于C++String类的比较的主要内容,如果未能解决你的问题,请参考以下文章

(C++基础_STL) —— string类的基本应用

(C++基础_STL) —— string类的基本应用

(C++基础_STL) —— string类的基本应用

(C++基础_STL) —— string类的基本应用

String类的equals是如何进行字符串比较的

高手请进,关于string类。