当我查看GNUStep提供的代码时,我可以得到arrayWithCapacity是一个调用initWithCapacity的常规方法:
+ (ID) arrayWithCapacity: (NSUInteger)numItems{ return autoRELEASE([[self allocWithZone: NSDefaultMallocZone()] initWithCapacity: numItems]);}
initWithCapacity是一个只进行自我初始化的简单方法.
- (ID) initWithCapacity: (NSUInteger)numItems{ self = [self init]; return self;}
没有关于内存分配和执行的项目数量.
使用arrayWithCapacity方法有什么好处?简单地使用[[NSArray alloc] init]会更好吗?
以上是内存溢出为你收集整理的ios – 使用arrayWithCapacity有什么好处全部内容,希望文章能够帮你解决ios – 使用arrayWithCapacity有什么好处所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)