-6

如何使用compareToIgnoreCase“String”类的方法来查看一个字符串是小于还是大于另一个字符串?我不能使用“ >”和“ <”。

4

1 回答 1

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...
}
于 2013-04-01T18:53:08.687 回答