增强For循环 - OC

  • 代码理解展示
NSArray *arr = @[@"one",@"two",@"three",@"four",@"five"];   //定义一个数组名为arr的数组
    
    //使用增强FOR循环,
    for(NSString * str in arr){
    
        NSLog(@"%@",str);
    }
  • 输出:
**2015-08-26 19:18:01.865 one[6097:698460] one**
**2015-08-26 19:18:01.866 one[6097:698460] two**
**2015-08-26 19:18:01.866 one[6097:698460] three**
**2015-08-26 19:18:01.866 one[6097:698460] four**
**2015-08-26 19:18:01.866 one[6097:698460] five**
  • 优点和缺点:
    优点:暂时只认为更加的方便
    缺点:不能在增强循环里动态的删除集合内容,不能获取下标。

你可能感兴趣的:(增强For循环 - OC)