Java String compareTo() 方法
示例
比较两个字符串
String myStr1 = "Hello";
String myStr2 = "Hello";
System.out.println(myStr1.compareTo(myStr2)); // Returns 0 because they are equal
定义和用法
The compareTo()
方法按字典顺序比较两个字符串。
比较基于字符串中每个字符的 Unicode 值。
如果字符串等于另一个字符串,则该方法返回 0。如果字符串小于另一个字符串(字符较少),则返回小于 0 的值,如果字符串大于另一个字符串(字符较多),则返回大于 0 的值。
提示:使用 compareToIgnoreCase() 按字典顺序比较两个字符串,忽略大小写差异。
提示:使用 equals() 方法比较两个字符串,不考虑 Unicode 值。
语法
以下之一
public int compareTo(String string2)
public int compareTo(Object object)
参数值
参数 | 描述 |
---|---|
string2 | A String , 表示要比较的另一个字符串 |
object | An Object , 表示要比较的对象 |
技术细节
返回值 | An int value: 0 if the string is equal to the other string.< 0 if the string is lexicographically less than the other string > 0 如果字符串在字典序上大于另一个字符串(更多字符) |
---|
❮ String 方法