內(nèi)容可以是任意的對(duì)象指針
內(nèi)容是一些鍵值對(duì) key value
必須成對(duì)出現(xiàn) 一個(gè) key 對(duì)應(yīng)一個(gè) value
key 是唯一的 不能出現(xiàn)多個(gè)相同的 key
//1.字面量創(chuàng)建不可變字典
NSDictionary * Dict = @{@"one":@"1",@"two":@"2"};
NSLog(@"Dict = %@",Dict);
//2.創(chuàng)建一個(gè)不可變字典
NSDictionary*dict=[[NSDictionary alloc]initWithObjectsAndKeys:@"1",@"one",@"2",@"two",@"3",@"three",@"4", @"four",@"5",@"five", nil];
NSLog(@"dict = %@",dict);
//3.根據(jù)已有字典創(chuàng)建一個(gè)不可變字典
NSDictionary * dict1 = [NSDictionary dictionaryWithDictionary:dict];
NSLog(@"dict1 = %@",dict1);
//4.用兩個(gè)分別存放鍵值的數(shù)組創(chuàng)建一個(gè)不可變字典
NSArray * values =[[NSArray alloc]initWithObjects:@"1",@"2",@"3",@"4", nil];
NSArray*keys=[[NSArray alloc]initWithObjects:@"one",@"two",@"three",@"four", nil];
NSDictionary* dict2 = [[NSDictionary alloc]initWithObjects:values forKeys:keys];
NSLog(@"dict2 = %@",dict2);
//鍵值對(duì)的個(gè)數(shù)
NSLog(@"keyValuescount = %ld",[dict2 count]);
//查找 通過(guò) key 找到對(duì)應(yīng)值
NSLog(@"%@",[dict objectForKey:@"four"]);
//字典類(lèi)的存在就是為了解決在大量數(shù)據(jù)中查找方便,因?yàn)樗峭ㄟ^(guò) key 直接找到 value 所以速度很快,避免一個(gè)個(gè)的遍歷尋找造成的效率低下,善用字典類(lèi)會(huì)幫 你的程序提速。
//字典和數(shù)組不一樣,數(shù)組是有序的魁巩,而字典是無(wú)序的
//創(chuàng)建 key 的枚舉器
NSEnumerator * keyenumer = [dict keyEnumerator];
//此處已知字典
NSString * obj;
while (obj = [keyenumer nextObject])
{
NSLog(@"obj = %@",obj);
}
//快速枚舉枚舉的是key
for (id od in dict)
{
NSLog(@"od = %@",od);
}
可變字典 NSMutableDictionary
NSMutableDictionary 是NSDictionary的子類(lèi),所以繼承了NSDictionary的方法布隔。
//創(chuàng)建可變字典
NSMutableDictionary *dict=[[NSMutableDictionary alloc]initWithObjectsAndKeys:@"1",@"one",@"2",@"two",@"3",@"three",@"4", @"four", nil];
NSLog(@"dict = %@",dict);
//可變字典特有的方法澳腹,增刪改
//字典中不存在@“five”key 那么就是增 加鍵值對(duì)
[dict setObject:@"5" forKey:@"five"];
NSLog(@"dict = %@",dict);
//字典中存在@“one”key 那么就是修改@ “one”對(duì)應(yīng)的值
[dict setObject:@"7" forKey:@"one"];
NSLog(@"dict = %@",dict);
//刪除鍵“one”對(duì)應(yīng)的鍵值對(duì)
[dict removeObjectForKey:@"one"];
~~~
------------------------------------
喜歡的話(huà)江锨,幫忙點(diǎn)一下喜歡戏锹,謝謝!
如果有錯(cuò)誤之處或者偏差贯溅,還請(qǐng)斧正拄氯!
歡迎大家留言提問(wèn),技術(shù)要交流才能更快成長(zhǎng)躲查!