Instance Method
インスタンスメソッド
isEqualToNumber:
Returns a Boolean value that indicates whether the number object’s value and a given number are equal.
あるブール値を返します、それは数オブジェクトのもつ値とある与えられた数が等しいかどうかを指し示します。
Declaration
宣言
- (BOOL)isEqualToNumber:(NSNumber
*)number;
Parameters
パラメータ
aNumber
The number to compare to the number object’s value.
この数オブジェクトのもつ値と比較することになる数。
Return Value
戻り値
YES
if the number object’s value and aNumber
are equal, otherwise NO
.
YES
、もし数オブジェクトのもつ値とaNumber
が等しいならば、そうでなければNO
。
Discussion
議論
Two NSNumber
objects are considered equal if they have the same id values or if they have equivalent values (as determined by the compare:
method).
2つのNSNumber
オブジェクトは等しいとみなされます、それらが同じid値を持つならばまたはそれらが等しい値を持つならば(compare:
によって解決されるとおりに)。
This method is more efficient than compare:
if you know the two objects are numbers.
このメソッドは、compare:
より効率的です、もしあなたが2つのオブジェクトが数であることを知っているならば。
See Also
参照
Comparing NSNumber Objects
NSNumberオブジェクトの比較
- compare:
Returns an NSComparisonResult
value that indicates whether the number object’s value is greater than, equal to, or less than a given number.
あるNSComparisonResult
値を返します、それは数オブジェクトのもつ値がある与えられた数より大きい、等しい、またはより小さいかを指し示します。