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

isEqual(to:)

Returns a Boolean value that indicates whether the number object’s value and a given number are equal. あるブール値を返します、それは数オブジェクトのもつ値とある与えられた数が等しいかどうかを指し示します。

Declaration 宣言

func isEqual(to number: NSNumber) -> Bool

Parameters パラメータ

aNumber

The number to compare to the number object’s value. この数オブジェクトのもつ値と比較することになる数。

Return Value 戻り値

true if the number object’s value and aNumber are equal, otherwise false. true、もし数オブジェクトのもつ値とaNumberが等しいならば、そうでなければfalse

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オブジェクトの比較