共计 591 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中比较字符串大小可以使用 String 类的 compareTo() 方法。该方法返回一个 int 值,根据字符串的字典顺序进行比较。如果两个字符串相等,则返回 0;如果当前字符串在字典顺序上大于另一个字符串,则返回一个正数;如果当前字符串在字典顺序上小于另一个字符串,则返回一个负数。
示例代码如下:
String str1 = "hello";
String str2 = "world";
int result = str1.compareTo(str2);
if(result > 0) {System.out.println(" 字符串 str1 大于字符串 str2");
} else if(result < 0) {System.out.println(" 字符串 str1 小于字符串 str2");
} else {System.out.println(" 两个字符串相等 ");
}
除了 compareTo() 方法外,还可以使用 equals() 方法来比较字符串是否相等。如果两个字符串完全相等,则 equals() 方法返回 true;否则返回 false。
String str1 = "hello";
String str2 = "Hello";
if(str1.equals(str2)) {System.out.println(" 两个字符串相等 ");
} else {System.out.println(" 两个字符串不相等 ");
}
丸趣 TV 网 – 提供最优质的资源集合!
正文完