qstring 字符串比较
时间: 2023-09-10 17:11:07 浏览: 229
字符串比较
在 Qt 中,可以使用 `QString` 类型的 `compare()` 函数来比较两个字符串的大小。该函数返回一个整数,表示两个字符串的大小关系:
- 返回值小于 0 表示第一个字符串小于第二个字符串。
- 返回值等于 0 表示两个字符串相等。
- 返回值大于 0 表示第一个字符串大于第二个字符串。
下面是一个示例代码:
```cpp
QString str1 = "Hello";
QString str2 = "World";
int result = str1.compare(str2);
if (result < 0) {
qDebug() << "str1 is less than str2";
} else if (result == 0) {
qDebug() << "str1 is equal to str2";
} else {
qDebug() << "str1 is greater than str2";
}
```
输出结果为:
```
str1 is less than str2
```
阅读全文