-6

「String」クラスのメソッドを使用してcompareToIgnoreCase、文字列が別の文字列より小さいか大きいかを確認するにはどうすればよいですか? >「 」と「 」は使えません<

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 に答える