目录
- NSArray和NSMutableArray
- NSDictionary和NSMutableDictionary
NSArray和NSMutableArray
NSArray类用来存储对象的有序列表,我们可以在NSArray中放入任意类型的对象。
NSArray类有两个限制:
- 只能存储OC对象,而不能存储原始的C语言基础的数据类型,例如:int、float、enum、struct等。
- NSArray中不能存储nil(对象的零值或NULL值)
下面通过代码看一下NSArray类常用的使用方法:
int main(int argc, const char * argv[]) {
@autoreleasepool {
//通过类方法arrayWithObjects:创建一个新的NSArray。
//其中对象列表以逗号分隔,在列表结尾添加nil代表列表结束。
//这就是不能在数组中存储nil的一个原因。
NSArray *array=[NSArray arrayWithObjects:@"one",@123, @"two",nil];
//等价于上面一行代码
//这种代码书写方式叫做字面量语法,使用该语法时,不必在结尾处特意补上nil。
NSArray *array2=@[@"one",@123, @"two"];
//获取数字包含的对象个数
[array count];
//获取特定索引处的对象
[array2 objectAtIndex:1];
//等价于上面代码语法
//array2[0];
/*输出结果:
index 0 has one
index 1 has 123
index 2 has two
*/
for (NSInteger i=0; i<[array count]; i++) {
NSLog(@"index %ld has %@",(long)i,[array objectAtIndex:i]);
}
//将字符串分割成数组
NSString *string=@"123,456,789";
NSArray *array3=[string componentsSeparatedByString:@","];
/*输出结果:
index 0 has 123
index 1 has 456
index 2 has 789
*/
for (NSInteger i=0; i<[array3 count]; i++) {
NSLog(@"index %ld has %@",(long)i,[array3 objectAtIndex:i]);
}
//将数组元素拼接成字符串
NSString *string1=[array3 componentsJoinedByString:@";"];
//输出结果:123;456;789
NSLog(@"%@",string1);
}
return 0;
}
NSArray创建的是不可变对象的数组。一旦创建了一个包含特定数量的对象的数组,我们既不能添加任何元素也不能删除任何元素。
为了弥补NSArray类不足,便有了NSMutableArray可变数组类,这样就可以随意地添加或删除数组中对象了。
int main(int argc, const char * argv[]) {
@autoreleasepool {
//NSMutableArray可以通过类arrayWithCapacity来创建可变数组。
NSMutableArray *array=[NSMutableArray arrayWithCapacity:10];
for (NSInteger i=0; i<4; i++) {
//在数组末尾添加对象
[array addObject:@1];
}
//删除特定索引处的对象
[array removeObjectAtIndex:0];
}
return 0;
}
NSDictionary和NSMutableDictionary
NSDictionary能在给定的关键字(通常是一个NSString字符串)下存储一个数值(可以是任意类型的OC对象),然后就可以用这个关键字来查找相应的数据。
字典使用的是键查询的优化方式。它可以立即找出要查询的数据,而不需要遍历整个数组。对于频繁的查询和大型的数据集来说,使用字典比数组要快得多。
int main(int argc, const char * argv[]) {
@autoreleasepool {
WZKPerson *person1=[WZKPerson new];
WZKPerson *person2=[WZKPerson new];
WZKPerson *person3=[WZKPerson new];
WZKPerson *person4=[WZKPerson new];
//dictionaryWithObjectsAndKeys:后面的参数先是要存储的对象,然后才是关键字;
NSDictionary *persons=[NSDictionary dictionaryWithObjectsAndKeys:
person1,@"p1",
person2,@"p2",
person3,@"p3",
person4,@"p4",
nil];
//或者可以采用字面量语法,关键字在前,数值在后,并且关键字和数值之间用冒号分开
NSDictionary *persons2=@{@"p1":person1,@"p2":person2,@"p3":person3,@"p4":person4};
WZKPerson *person=[persons objectForKey:@"p1"];
//等价于
WZKPerson *newPerson=persons2[@"p1"];
}
return 0;
}
NSMutableDictionary类允许随意添加和删除字典元素。
int main(int argc, const char * argv[]) {
@autoreleasepool {
WZKPerson *person1=[WZKPerson new];
WZKPerson *person2=[WZKPerson new];
WZKPerson *person3=[WZKPerson new];
WZKPerson *person4=[WZKPerson new];
//使用setObject:forKey:方法为字典添加元素
NSMutableDictionary *persons=[NSMutableDictionary dictionary];
[persons setObject:person1 forKey:@"p1"];
[persons setObject:person2 forKey:@"p2"];
[persons setObject:person3 forKey:@"p3"];
[persons setObject:person4 forKey:@"p4"];
//根据Key移除某特定对象
[persons removeObjectForKey:@"p1"];
//移除所有对象
[persons removeAllObjects];
}
return 0;
}
对于字典中已有的关键字使用setObject:forKey:方法,那么这个方法将会用新值替换掉原有的数值。