String類的compareTo方法用于比較兩個字符串的大小關系。它的使用方法如下:
語法: int compareTo(String anotherString)
參數:
返回值:
示例代碼:
String str1 = "abc";
String str2 = "def";
int result = str1.compareTo(str2);
if (result < 0) {
System.out.println("str1小于str2");
} else if (result == 0) {
System.out.println("str1等于str2");
} else {
System.out.println("str1大于str2");
}
輸出結果:
str1小于str2
在上述示例中,str1與str2進行了比較,由于str1的字符順序在字典中位于str2之前,所以返回結果小于0,輸出"str1小于str2"。