compareto()方法 概览

java.lang.String 的 compareTo() 方法比较两个字符串,并返回:
compareTo() 方法还提供了忽略字符串的空格的方式(字符串可能会被忽略或修剪),使其仅限于比较字符。
语法:
```
public int compareTo(String anotherString)
```
参数:
返回值:
示例:
```
String str1 = "Hello";
String str2 = "World";
int result = str1.compareTo(str2);
if (result == 0) {
System.out.println("Both strings are equal.");
} else if (result > 0) {
System.out.println("str1 is greater than str2.");
} else {
System.out.println("str1 is less than str2.");
}
```
输出:
```
str1 is less than str2.
```
标签:String,compareTo(),比较字符串,字典顺序