Instance Method
インスタンスメソッド
addObject:
Adds a given object to the set.
ある与えられたオブジェクトを集合に追加します。
Declaration
宣言
- (void)addObject:(ObjectType)object;
Parameters
パラメータ
anObject
The object to add to the set.
集合に加えることになるオブジェクト。
Discussion
議論
If anObject
is already a member, addObject:
increments the count associated with the object. If anObject
is not already a member, it is sent a retain
message.
anObject
がすでに1メンバーならば、addObject:
はそのオブジェクトと結び付けられる計数を漸増します。anObject
がまだメンバーでないならば、それはretain
メッセージを送られます。
See Also
参照
Adding and Removing Entries
登録項目の追加と除去
- removeObject:
Removes a given object from the set.
ある与えられたオブジェクトをこの集合から取り除きます。