comparator比较字符串
时间: 2023-07-03 13:20:00 浏览: 234
字符串比较
可以使用 `String.compareTo()` 方法来比较两个字符串。这个方法会比较两个字符串的 Unicode 码点,如果两个字符串相等则返回0,如果前一个字符串在字典序中排在后一个字符串之前,则返回负数,反之则返回正数。
例如,比较两个字符串 "apple" 和 "banana",可以使用以下代码:
```
String str1 = "apple";
String str2 = "banana";
int result = str1.compareTo(str2);
if (result < 0) {
System.out.println(str1 + " is less than " + str2);
} else if (result == 0) {
System.out.println(str1 + " is equal to " + str2);
} else {
System.out.println(str1 + " is greater than " + str2);
}
```
输出结果为:"apple is less than banana"。
阅读全文