扫码一下
查看教程更方便
compareTo() 方法将此字符串与另一个对象进行比较。
int compareTo(Object o)
o - 要比较的对象。
按字典顺序,如果作为参数的字符串等于该字符串,则值为 0; 如果作为参数的字符串大于此字符串,则值小于 0; 如果作为参数的字符串小于此字符串,则值大于 0。
public class Main { public static void main(String args[]) { String str1 = "Strings are immutable"; String str2 = new String("Strings are immutable"); String str3 = new String("Integers are not immutable"); int result = str1.compareTo( str2 ); System.out.println(result); result = str2.compareTo( str3 ); System.out.println(result); } }
上面示例编译运行结果如下
0
10