欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

增强For循环 - OC

程序员文章站 2024-01-14 22:29:22
...
  • 代码理解展示
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**
  • 优点和缺点:
    优点:暂时只认为更加的方便
    缺点:不能在增强循环里动态的删除集合内容,不能获取下标。