+ set
+ setWithArray:
+ setWithObject:
+ setWithObjects:count:
+ setWithSet:
- setByAddingObject:
- setByAddingObjectsFromSet:
- setByAddingObjectsFromArray:
Availability 有効性
Technology
+ (instancetype)setWithObjects:(ObjectType )firstObj, ...;
firstObj
The first object to add to the new set. 新しい集合に加えることになる最初のオブジェクト。
firstObj, ...
A comma-separated list of objects, ending with nil
, to add to the new set. If the same object appears more than once in the list of objects, it is added only once to the returned set. Each object receives a retain
message as it is added to the set.
新しい集合に加えることになる、コンマで区切られた、nil
で終わる、オブジェクトのリスト。同じオブジェクトが一度以上このオブジェクトのリストに現れるならば、それはただ一度だけこの返される集合において加えられます。各オブジェクトは、それが集合に加えられるときretain
メッセージを受け取ります。
A new set containing the objects in the argument list. 引数リストの中のオブジェクトを含んでいる新しい集合。
As an example, the following code excerpt creates a set containing three different types of elements (assuming a
exits):
例として、以下のコード抜粋は、3つの異なる型の要素を含んでいる集合を作成します(a
が存在すると仮定します):
+ set
+ setWithArray:
+ setWithObject:
+ setWithObjects:count:
+ setWithSet:
- setByAddingObject:
- setByAddingObjectsFromSet:
- setByAddingObjectsFromArray: