Objective-C文法之NSSet和NSMutableSet

來源:互聯網
上載者:User

NSSet和NSMutableSet是無序的, 但是它保證資料的唯一性。當插入相同的資料時,不會有任何效果。從內部實現來說是hash表,所以可以常數時間內尋找一個資料。

1、NSSet的使用
[NSSet setWithSet:(NSSet *)set]; 用另外一個set物件建構
[NSSet setWithArray:(NSArray *)array];用數組構造
[NSSet setWithObjects:...]:建立集合對象,並且初始化集合中的數值,結尾必需使用nil標誌。
[set count] ; 得到這個結合對象的長度。
[set containsObject:...]: 判斷這個集合中是否存在傳入的對象,返回Bool值。
[set objectEnumerator]: 將集合放入迭代器。
[enumerator nextObject]:得到迭代器中的下一個節點資料,使用while遍曆這個迭代器,方可遍曆集合對象中的對象。
[set isEqualToSet:objset]:判斷兩個集合是否完全相等,返回Bool值。
[set isSubsetOfSet:objset]:判斷集合中的所有資料是否都相等與objeset集合中,返回Bool值。
[set allObjects];

範例程式碼:

1.1 以NSArray構造set

        NSArray *array = [[NSArray alloc] initWithObjects:@"對象abc",@"rongfzh", @"totogo2010",nil];        NSSet *set3 = [NSSet setWithArray:array];        NSLog(@"%@", set3);

列印:

2012-07-10 09:39:02.015 objectiveC[720:403] {(    rongfzh,    "\U5bf9\U8c61abc",    totogo2010)}

1.2 set的一些比較方法的使用。

int main(int argc, const char * argv[]){    @autoreleasepool {        NSSet *set = [NSSet setWithObjects:@"25",@"age",@"張三",@"name",@"男",nil];        NSSet *set1 = [NSSet setWithObjects:@"25",@"age",@"張三",@"name",@"男",@"性別",nil];                NSLog(@"set count:%lu", [set count]);        //判斷是否含有age字串        if([set containsObject:@"age"]) {            NSLog(@"set包含age");        }        //判斷set 是否等於set1        if ([set isEqualToSet:set1]) {            NSLog(@"set 等於 set1");        }        //判斷set是否是否是set1的子集合        if ([set isSubsetOfSet:set1]) {            NSLog(@"set isSubsetOfSet set1");        }        //擷取所有set對象        NSArray *array = [set allObjects];        NSLog(@"array:%@", array);                //迭代遍曆        NSEnumerator *enumerator = [set objectEnumerator];        for (NSObject *object in enumerator) {            NSLog(@"set1裡的對象:%@", object);        }    }    return 0;}

列印結果:

2012-07-10 09:50:32.018 objectiveC[939:403] set count:52012-07-10 09:50:32.020 objectiveC[939:403] set包含age2012-07-10 09:50:32.021 objectiveC[939:403] set isSubsetOfSet set12012-07-10 09:50:32.023 objectiveC[939:403] array:(    age,    25,    "\U7537",    "\U5f20\U4e09",    name)2012-07-10 09:50:32.027 objectiveC[939:403] set1裡的對象:age2012-07-10 09:50:32.028 objectiveC[939:403] set1裡的對象:252012-07-10 09:50:32.028 objectiveC[939:403] set1裡的對象:男2012-07-10 09:50:32.029 objectiveC[939:403] set1裡的對象:張三2012-07-10 09:50:32.029 objectiveC[939:403] set1裡的對象:name

2、NSMutableSet的使用

NSMutableSet繼承NSSet,它可以使用NSSet的方法。

[NSMutableSet setWithCapacity:6]:建立可變集合對象,並且初始化長度為6。
[set addObject: obj] : 向集合中動態添加對象。
[set removeObject:obj]:刪除集合中的一個對象。
[set removeAllObjects]:刪除集合中的所有對象。
[set unionSet:obj]:向集合中添加一個obj集合的所有資料。
[set minusSet:obj]:向集合中刪除一個obj集合的所有資料。
[set intersectSet]:向集合中刪除一個不包含obj集合的所有資料。

int main(int argc, const char * argv[]){    @autoreleasepool {        NSMutableSet *muSet = [NSMutableSet setWithCapacity:6];        [muSet addObject:@"對象1"];        NSSet *set = [NSSet setWithObjects:@"對象2",@"對象3", @"被企鵝咬了一口", nil];        //添加set資料        [muSet unionSet:set];        for (NSObject *object in muSet) {            NSLog(@"all nuSet:%@",object);        }        NSSet *set1 = [NSSet setWithObjects:@"對象2",@"對象3", nil];                //在muSet中刪除包含set1總資料        [muSet minusSet:set1];        for (NSObject *object in muSet) {            NSLog(@"after minusSet:%@",object);        }                }    return 0;}

列印結果:

2012-07-10 10:09:08.194 objectiveC[1156:403] all nuSet:對象12012-07-10 10:09:08.196 objectiveC[1156:403] all nuSet:被企鵝咬了一口2012-07-10 10:09:08.196 objectiveC[1156:403] all nuSet:對象22012-07-10 10:09:08.197 objectiveC[1156:403] all nuSet:對象32012-07-10 10:09:08.198 objectiveC[1156:403] after minusSet:對象12012-07-10 10:09:08.198 objectiveC[1156:403] after minusSet:被企鵝咬了一口

  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.