清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
Objective-C遍历数组的方法有很多,各种遍历方法效率不尽相同,系统内部会进行不同的优化
大家可以根据自己的实际需求选择合适的方法
#import <Foundation/Foundation.h> #import <Cocoa/Cocoa.h> //遍历数组的3种方法,删除数组元素,添加数组元素 void foreach() { NSMutableArray *marray =[NSMutableArrayarrayWithObjects:@"000",@"111",@"222",@"333",@"444",nil]; [marray addObject:@"555"];//添加对象 //1.遍历方法一,使用普通循环,借助数组的个数 for (int i=0; i<[marraycount]; i++) { NSLog(@"%@ ",[marrayobjectAtIndex:i]); } //2.遍历方法,此方法系统进行了优化,效率最高 id obj;用一个obj对象来接受数组中的每一个元素(对象) for (arr in marray) { NSLog(@"%@ ",arr);//这个语句会执行 [marray count]次,把每个数组元素取出来 } //3.使用枚举器遍历 NSEnumerator *enumerator=[marray objectEnumerator];//注意变量不要命名为enum关键字 id obj; while (obj=[enumerator nextObject]) { NSLog(@"%@ ",obj); } [marray removeObjectAtIndex:0]; for (arr in marray) { NSLog(@"%@ ",arr); } } int main() { foreach(); return 0; }