objective-c数组的七种遍历方法总结

//第一种
[arr enumerateObjectsUsingBlock: ^(id obj, NSUInteger idx, BOOL *stop){
     NSLog(@ "%ld,%@" ,idx,[arr objectAtIndex:idx]);
}];
//第二种
dispatch_apply([arr count], dispatch_get_global_queue( 0 , 0 ), ^(size_t index){ //并行
     NSLog(@ "%ld,%@" ,index,[arr objectAtIndex:index]);
});
//第三种
dispatch_apply([arr count], dispatch_get_main_queue(), ^(size_t index){ //串行,容易引起主线程堵塞,可以另外开辟线程
     NSLog(@ "%ld,%@" ,index,[arr objectAtIndex:index]);
});
//第四种
for (NSString*str in arr) {
      NSLog(@ "%@" ,str);
}
//第五种,do-while
int i = 0 ;
do {
     NSLog(@ "%@" ,[arr objectAtIndex:i]);
     i++;
} while (i<[arr count]);
 
//第六种,while-do
int j = 0 ;
while (j<[arr count]) {
     NSLog(@ "%@" ,[arr objectAtIndex:j]);
     j++;
}
//第七种,普通for循环
for ( int m = 0 ; m<[arr count]; m++) {
     NSLog(@ "%@" ,[arr objectAtIndex:m]);
}
posted on 2016-02-16 09:29 苹果ios开发者 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/z-j-w/p/5191771.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值