Instance Method インスタンスメソッド

compare:

Returns the result of invoking compare:options:range: with no options and the receiver’s full extent as the range. compare:options:range:を発動する結果を返します、オプション無しそしてレシーバの持つ完全な広がりを範囲として使います。

Declaration 宣言

- (NSComparisonResult)compare:(NSString *)string;

Parameters パラメータ

aString

The string with which to compare the receiver. レシーバと比較する文字列。

This value must not be nil. If this value is nil, the behavior is undefined and may change in future versions of macOS. この値は、nilではいけません。この値がnilならば、その挙動は未定義です、そして将来のバージョンのmacOSでは変わるかもしれません。

Return Value 戻り値

Returns an NSComparisonResult value that indicates the lexical ordering. NSOrderedAscending the receiver precedes aString in lexical ordering, NSOrderedSame the receiver and aString are equivalent in lexical value, and NSOrderedDescending if the receiver follows aString. NSComparisonResult値を返します、それは語彙的順序を指し示します。NSOrderedAscending レシーバはaStringに語彙的順序において先行します、NSOrderedSame レシーバとaStringは語彙的値において同等です、そしてNSOrderedDescending もしレシーバがaStringに続くならば。

Discussion 議論

This method is equivalent to invoking compare:options:range: with no options and the receiver’s full extent as the range. このメソッドは、compare:options:range:をオプション無しでそしてレシーバの持つ完全な大きさを範囲として発動することに等しいです。

See Also 参照

Identifying and Comparing Strings 文字列を識別および比較する