Object C学习笔记13-Dictionary

可变两种类型的。的确如此,在Object C中提供了两个字典类,分别为NSDictionary 和 NSMutableDictionary. 在.NET中我们也学习过Dictionary类,这个集合的存储方式是键值对的方式存储的。而且使用Dictionary查找元素也极为简单。
 
 
 
  一 NSDictionary 不可变字典
 
    (1) 初始化字典
 
复制代码
NSDictionary *dic=[NSDictionary dictionaryWithObject:@"hechen" forKey:@"name"];
        NSDictionary *dic1=[NSDictionary dictionaryWithObjectsAndKeys:@"hechen",@"name",@"25",@"age", nil];
        NSDictionary *dic2=[[NSDictionary alloc] init];
        
        NSLog(@"%d",[dic count]);
        NSLog(@"%d",[dic1 count]);
        NSLog(@"%d",[dic2 count]);
        
复制代码
    上面列举了三种方式来初始化字典对象:
 
    1. [[NSDictionary alloc] init] 方法最为常见了,先给NSDictionary分配空间再初始化,这也是大众的方式;
 
    2. 使用dictionaryWithObject forkey 该方法在初始化的时候提供了两个参数,第一个为存储的值,第二个为key,这个和我们平时在.NET中有点不一样的,这里的key是放在后面的。
 
    3. 使用dictionaryWithObjectsAndKeys 这个方法同样用于初始化NSDictionary,这里可以传入多个值,奇数为value值,偶数为key值,但是必须以nil形式结尾。这个和之前的NSArray,NSSet一致,标识集合的结束。

http://v.17173.com/playlist_16243005.html?retcode=0
http://v.17173.com/playlist_16244048.html?retcode=0
http://v.17173.com/playlist_16244589.html?retcode=0
http://v.17173.com/playlist_16245740.html?retcode=0
http://v.17173.com/playlist_16246511.html?retcode=0
http://v.17173.com/playlist_16276445.html?retcode=0
http://v.17173.com/playlist_16275379.html?retcode=0
http://v.17173.com/playlist_16274196.html?retcode=0
http://v.17173.com/playlist_16272743.html?retcode=0
http://v.17173.com/playlist_16271745.html?retcode=0
http://v.17173.com/playlist_16270694.html?retcode=0
http://v.17173.com/playlist_16269747.html?retcode=0
http://v.17173.com/playlist_16268962.html?retcode=0
http://v.17173.com/playlist_16267988.html?retcode=0
http://v.17173.com/playlist_16266881.html?retcode=0
http://v.17173.com/playlist_16265728.html?retcode=0
http://v.17173.com/playlist_16264745.html?retcode=0
http://v.17173.com/playlist_16263755.html?retcode=0
http://v.17173.com/playlist_16262692.html?retcode=0
http://v.17173.com/playlist_16260273.html?retcode=0
http://v.17173.com/playlist_16250327.html?retcode=0
http://v.17173.com/playlist_16249446.html?retcode=0
http://v.17173.com/playlist_16248725.html?retcode=0
http://v.17173.com/playlist_16248141.html?retcode=0
http://v.17173.com/playlist_16247142.html?retcode=0
http://v.17173.com/playlist_16301211.html?retcode=0
http://v.17173.com/playlist_16299899.html?retcode=0
http://v.17173.com/playlist_16298388.html?retcode=0
http://v.17173.com/playlist_16297123.html?retcode=0
http://v.17173.com/playlist_16296085.html?retcode=0
http://v.17173.com/playlist_16294578.html?retcode=0
http://v.17173.com/playlist_16293492.html?retcode=0
http://v.17173.com/playlist_16292032.html?retcode=0
http://v.17173.com/playlist_16290619.html?retcode=0
http://v.17173.com/playlist_16289611.html?retcode=0
http://v.17173.com/playlist_16288604.html?retcode=0
http://v.17173.com/playlist_16286938.html?retcode=0
http://v.17173.com/playlist_16285846.html?retcode=0
http://v.17173.com/playlist_16284744.html?retcode=0
http://v.17173.com/playlist_16283600.html?retcode=0
http://v.17173.com/playlist_16282325.html?retcode=0
http://v.17173.com/playlist_16281018.html?retcode=0
http://v.17173.com/playlist_16279921.html?retcode=0
http://v.17173.com/playlist_16279035.html?retcode=0
http://v.17173.com/playlist_16277617.html?retcode=0
http://v.17173.com/playlist_16324284.html?retcode=0
http://v.17173.com/playlist_16323278.html?retcode=0
http://v.17173.com/playlist_16322226.html?retcode=0
http://v.17173.com/playlist_16321011.html?retcode=0
http://v.17173.com/playlist_16320132.html?retcode=0
http://v.17173.com/playlist_16319146.html?retcode=0
http://v.17173.com/playlist_16318138.html?retcode=0
http://v.17173.com/playlist_16317154.html?retcode=0
http://v.17173.com/playlist_16316170.html?retcode=0
http://v.17173.com/playlist_16315099.html?retcode=0
http://v.17173.com/playlist_16313923.html?retcode=0
http://v.17173.com/playlist_16313062.html?retcode=0
http://v.17173.com/playlist_16311883.html?retcode=0
http://v.17173.com/playlist_16310039.html?retcode=0
http://v.17173.com/playlist_16308938.html?retcode=0
http://v.17173.com/playlist_16307556.html?retcode=0
http://v.17173.com/playlist_16306309.html?retcode=0
http://v.17173.com/playlist_16305034.html?retcode=0
http://v.17173.com/playlist_16303450.html?retcode=0
http://v.17173.com/playlist_16302296.html?retcode=0
http://v.17173.com/playlist_16448988.html?retcode=0
http://v.17173.com/playlist_16448352.html?retcode=0
http://v.17173.com/playlist_16447628.html?retcode=0
http://v.17173.com/playlist_16446998.html?retcode=0
http://v.17173.com/playlist_16446322.html?retcode=0
http://v.17173.com/playlist_16445711.html?retcode=0
http://v.17173.com/playlist_16444907.html?retcode=0
http://v.17173.com/playlist_16443828.html?retcode=0
http://v.17173.com/playlist_16443046.html?retcode=0
http://v.17173.com/playlist_16442144.html?retcode=0
http://v.17173.com/playlist_16441358.html?retcode=0
http://v.17173.com/playlist_16440657.html?retcode=0
http://v.17173.com/playlist_16439949.html?retcode=0
http://v.17173.com/playlist_16438547.html?retcode=0
http://v.17173.com/playlist_16437867.html?retcode=0
http://v.17173.com/playlist_16436965.html?retcode=0
http://v.17173.com/playlist_16436354.html?retcode=0
http://v.17173.com/playlist_16435764.html?retcode=0
http://v.17173.com/playlist_16435085.html?retcode=0
http://v.17173.com/playlist_16434230.html?retcode=0
http://v.17173.com/playlist_16433539.html?retcode=0
http://v.17173.com/playlist_16432890.html?retcode=0
http://v.17173.com/playlist_16432210.html?retcode=0
http://v.17173.com/playlist_16431418.html?retcode=0
http://v.17173.com/playlist_16430439.html?retcode=0
http://v.17173.com/playlist_16429753.html?retcode=0
http://v.17173.com/playlist_16429087.html?retcode=0
http://v.17173.com/playlist_16428423.html?retcode=0
http://v.17173.com/playlist_16427373.html?retcode=0
http://v.17173.com/playlist_16426697.html?retcode=0
http://v.17173.com/playlist_16426046.html?retcode=0
http://v.17173.com/playlist_16425281.html?retcode=0
http://v.17173.com/playlist_16424515.html?retcode=0
http://v.17173.com/playlist_16423784.html?retcode=0
http://v.17173.com/playlist_16423128.html?retcode=0


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值