compareTo() 方法用于两种方式的比较:
int compareTo(Object o) 或 int compareTo(String anotherString)
o -- 要比较的对象。
anotherString -- 要比较的字符串。
public class Test { public static void main(String args[]) { String str1 = "Strings"; String str2 = "Strings"; String str3 = "Strings123"; int result = str1.compareTo( str2 ); System.out.println(result); result = str2.compareTo( str3 ); System.out.println(result); result = str3.compareTo( str1 ); System.out.println(result); } }
以上程序执行结果为:
0 -3 3
在线实例
字符集 & 工具
最新更新
站点信息
关注我们