如何使用'String'类的compareToIgnoreCase
方法查看字符串是否小于或大于另一个字符串?我无法使用“>
”和“<
”。
答案 0 :(得分:5)
此例程返回-1,0或1作为值,因此您可以执行以下操作:
String first;
String second;
... assign first and second
if( first.compareToIgnoreCase(second) < 0) {
// second is less than first...
} else if first.compareToIgnoreCase(second) == 0) {
// second is same as first...
} else if first.compareToIgnoreCase(second) > 0) {
// second is greater than first...
}