在 Java 中按字典顺序比较两个字符串 \
java programming java8object oriented programming
在 Java 中,我们可以使用以下方法按字典顺序比较两个字符串。
使用 String.compareTo(String) 方法。它以区分大小写的方式进行比较。
使用 String.compareToIgnoreCase(String) 方法。它以不区分大小写的方式进行比较。
使用 String.compareTo(Object) 方法。它以区分大小写的方式进行比较。
这些方法返回比较字符串的第一个奇数字符的 ASCII 差异。
示例
public class Tester { public static void main(String args[]) { String str = "Hello World"; String anotherString = "hello world"; Object objStr = str; System.out.println( str.compareTo(anotherString) ); System.out.println( str.compareToIgnoreCase(anotherString) ); System.out.println( str.compareTo(objStr.toString())); } }
输出
-32 0 0