首页 > 其他 > 详细

各种遍历写法的比较

时间:2014-02-13 21:46:53      阅读:630      评论:0      收藏:0      [点我收藏+]

链接:http://iosdevelopertips.com/objective-c/high-performance-collection-looping-objective-c.html

NSArray:

  • for (id object in array) :正向遍历最快;
  • for (id object in [array reverseObjectEnumerator]) : 反向遍历;
  • for (NSInteger i = 0; i < count; i++) : 当需要使用index或修改内容,先算出Count,再遍历最快;
  • [array enumerateObjectsWithOptions:usingBlock:]: 需要并行遍历时;

NSSet:

  • for (id object in set):遍历最快;
  • for (id object in [set copy]):需要修改内容时;
  • [set enumerateObjectsWithOptions:usingBlock:] 需要并行遍历时.

NSDictionary:

  • [dictionary enumerateKeysAndObjectsUsingBlock:] :遍历最快;
  • for (id key in [dictionary allKeys]): 需要修改内容时;
  • [dictionary enumerateKeysAndObjectWithOptions:usingBlock:]: 需要并行遍历时.

各种遍历写法的比较

原文:http://www.cnblogs.com/simalone/p/3547973.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!