Java String compareTo() 方法

返回 Java Strings 类


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

返回 Java Strings 类

查看笔记

扫码一下
查看教程更方便