字典用于保存具有映射關系數(shù)據(jù)的集合
網(wǎng)站建設哪家好,找成都創(chuàng)新互聯(lián)!專注于網(wǎng)頁設計、網(wǎng)站建設、微信開發(fā)、微信小程序開發(fā)、集團企業(yè)網(wǎng)站建設等服務項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了滿城免費建站歡迎大家使用!一個key—value對認為是一個條目(entry),字典是存儲key—value對的容器
與數(shù)組不同,字典靠key存取元素
key不能重復,value必須是對象
鍵值對在字典中是無序存儲的
字典分:不可變字典(NSDictionary)和可變字典(NSMutableDictionary)
不可變字典一旦創(chuàng)建,鍵值對就不可更改,不可添加,不可刪除,僅能讀取key或者value
常用方法有:
1、創(chuàng)建字典對象
2、獲取所有key值,獲取所有value值
3、通過key值查詢value
1、常見字典的常用方法
在創(chuàng)建字典對象時需要賦值鍵值對,但是順序為:值,鍵,(值在前鍵在后的形式)
NSDictionary *dic1 = [[NSDictionary alloc] initWithObjectsAndKeys:@"Duke",@"name",@33,@"age",@"男",@"gender", nil];
NSLog(@"%@",dic1);
NSDictionary *dic2 = [NSDictionary dictionaryWithObjectsAndKeys:@"Duke",@"name",@33,@"age",@"男",@"gender", nil];
NSLog(@"%@",dic2);
NSArray *keys = @[@"name",@"age",@"gender"];
NSArray *values = @[@"Duke",@33,@"male"];
字典的語法糖形式
鍵值對之間以逗號隔開,鍵和值之間以冒號隔開
NSDictionary *dic5 = @{@"name" : @"Duke",@"age" : @33,@"gender" : @"male"};
NSLog(@"%@",dic5);
創(chuàng)建字典對象時兩個數(shù)組元素個數(shù)必須一致
NSDictionary *dic3 = [[NSDictionary alloc] initWithObjects:values forKeys:keys];
NSLog(@"%@",dic3);
NSDictionary *dic4 = [NSDictionary dictionaryWithObjects:values forKeys:keys];
NSLog(@"%@",dic4);
通過count方法獲取字典中鍵值對的個數(shù)
NSInteger count = [dic4 count];
NSLog(@"%ld",count);
獲取字典中所有的鍵
NSArray *allKeys = [dic4 allKeys];
NSLog(@"%@",allKeys);
獲取字典中所有的值組成的值
NSArray *allValues = [dic4 allValues];
NSLog(@"%@",allValues);
通過指定的鍵獲取其在字典中對應的值
id object = [dic4 objectForKey:@"age"];
NSLog(@"%@",object);
for (int i = 0; i < count; i++) {
id key = [allKeys objectAtIndex:i];
根據(jù)當前遍歷得到的key去獲取對應的value
id value = [dic4 objectForKey:key];
NSString *result = [value isKindOfClass:[NSString class]] ? @"YES" : @"NO";
NSLog(@"%@:%@-->%@",key,value,result);
}
NSMutableDictionary可變字典
可變NSMutableDictionary是NSDictionary的子類,擁有所有NSDictionary的方法
常用方法有:
1、創(chuàng)建字典對象
2、添加鍵值對
3、修改key對應的value
4、刪除鍵值對
5、通過fou循環(huán)遍歷所有鍵值對
NSMutableDictionary可變字典對象的創(chuàng)建
NSMutableDictionary *dic6 = [[NSMutableDictionary alloc] initWithDictionary:dic5];
NSLog(@"%@",dic6);
NSMutableDictionary *dic7 = [NSMutableDictionary dictionaryWithDictionary:dic5];
NSLog(@"%@",dic7);
NSMutableDictionary *dic8 = [[NSMutableDictionary alloc] init];
NSLog(@"%@",dic8);
NSMutableDictionary *dic9 = [NSMutableDictionary dictionary];
NSLog(@"%@",dic9);
增加鍵值對
[dic9 setObject:@"Duke" forKey:@"name"];
[dic9 setObject:@"male" forKey:@"gender"];
[dic9 setObject:@33 forKey:@"age"];
NSLog(@"%@",dic9);
修改已有鍵對應的值
如果鍵不存在,則為添加鍵值對,如果鍵存在,則為修改已有鍵對應的值
[dic9 setObject:@34 forKey:@"age"];
NSLog(@"%@",dic9);
根據(jù)指定鍵去刪除對應的鍵值對
[dic9 removeObjectForKey:@"age"];
NSLog(@"%@",dic9);
刪除所有的鍵值對
[dic9 removeAllObjects];
NSLog(@"%@",dic9);
OC中的集合(NSSet)與數(shù)學中的集合一樣,集合中的元素具有唯一性、存儲單元的元素是無序的、存儲元素必須是對象類型
OC中用Set表示集合,分為NSSet和NSMutableSet
NSSet對象的創(chuàng)建 無序性,互異性
NSSet的常用方法
1、創(chuàng)建集合對象
2、獲取元素個數(shù)
3、獲取集合中的某個元素
4、判斷集合中是否包含某個對象
創(chuàng)建集合對象
NSSet *set1 = [[NSSet alloc] initWithObjects:@"1",@"2",@"2",@"3", nil];
NSLog(@"%@",set1);
NSSet *set2 = [NSSet setWithObjects:@"3",@"2",@"1", nil];
NSLog(@"%@",set2);
用數(shù)組對象來創(chuàng)建集合對象
可以通過這種方法過濾掉數(shù)組中重復的元素對象
NSArray *array = @[@1,@2,@3,@2,@3];
NSSet *set3 = [[NSSet alloc] initWithArray:array];
NSSet *set4 = [NSSet setWithArray:array];
NSLog(@"%@",set3);
NSLog(@"%@",set4);
獲取集合中對象的個數(shù)
NSInteger count2 = [set4 count];
NSLog(@"%ld",count2);
獲取集合中的對象
id object1 = [set4 anyObject];
NSLog(@"%@",object1);
判斷一個給定的對象是否包含在指定的集合中
NSString *result1 = [set4 containsObject:@3] ? @"YES" : @"NO";
NSLog(@"%@is contained in set %@",@3,result1);
NSMutableSet的常用方法
1、創(chuàng)建集合對象
2、添加元素
3、刪除元素
創(chuàng)建NSMutableset對象
NSMutableSet *mutableSet1 = [[NSMutableSet alloc] init];
NSLog(@"%@",mutableSet1);
NSMutableSet *mutableSet2 = [NSMutableSet set];
NSLog(@"%@",mutableSet2);
通過不可變對象創(chuàng)建
NSMutableSet *mutableSet3 = [[NSMutableSet alloc] initWithSet:set1];
NSLog(@"%@",mutableSet3);
NSMutableSet *mutableSet4 = [NSMutableSet setWithSet:set1];
NSLog(@"%@",mutableSet4);
添加集合元素
[mutableSet4 addObject:@4];
NSLog(@"%@",mutableSet4);
刪除單個集合
[mutableSet4 removeObject:@"3"];
NSLog(@"%@",mutableSet4);
刪除所有元素
[mutableSet4 removeAllObjects];
NSLog(@"%@",mutableSet4);
NSCountedSet
NSCountedSet是NSMutableString的子類
能記錄元素的重復次數(shù)
在set的基礎上添加了計數(shù)功能
NSCountedSet記錄添加進去的集合對象出現(xiàn)的次數(shù)
NSCountedSet *countedSet = [NSCountedSet set];
[countedSet addObject:@1];
[countedSet addObject:@2];
[countedSet addObject:@2];
NSLog(@"%@",countedSet);
單獨獲取某個對象在集合中出現(xiàn)過多少次
NSInteger countOfObjec = [countedSet countForObject:@1];
NSLog(@"%ld",countOfObjec);
通過快速枚舉來遍歷數(shù)組元素
NSArray *testArray = @[@1,@2,@3,@4,@5];
for (id object in testArray) {
NSLog(@"%@",object);
}
for (NSNumber *object in testArray) {
NSLog(@"%@",object);
}
快速遍歷集合
for (id object in set1) {
NSLog(@"%@",object);
}
快速遍歷字典
直接遍歷字典直接得到的是字典的每一個鍵,可以通過遍歷得到的鍵去獲取對應的值
for (NSString *key in dic1) {
NSLog(@"dictionary[%@]:%@",key,dic1[key]);
}
// dic1[key]就相當于[dic1 objectForKey:key]
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
網(wǎng)站標題:OC中NSDictionary、NSSet得常用方法-創(chuàng)新互聯(lián)
本文路徑:http://jinyejixie.com/article0/diojoo.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站營銷、服務器托管、小程序開發(fā)、響應式網(wǎng)站、網(wǎng)站導航、Google
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)