Java 中的 compareTo 方法的作用是什么?


Java 中的 compareTo() 方法根据字母比较两个字符串。

示例

现场演示

public class Test {
   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

更新于: 26-2-2020

129 次浏览

启动你的 职业生涯

完成课程即可获得认证

开始吧
广告