我想知道检查对象分配(或其他事情)的正确方法是什么。我自己做了一些性能测试,发现没有方法调用的检查可以节省“大量”时间。哪种方式被认为是好的编码?测试和结果如下。
定义:
#define checkUM if (!um) {um = [[UtilityMaster alloc]init]; }
与方法:
-(void) checkUtility {
if (!um) {um = [[UtilityMaster alloc]init]; }
}
检查代码:
int imax = 1000000000;
int i = 0;
IFD100(@"check method")
while (i <= imax) {
[self checkUtility];
i++;
}
IFD100(@"check method end")
i = 0;
IFD100(@"check define")
while (i <= imax) {
checkUM;
i++;
}
IFD100(@"check define end")
检查1:
2013-06-25 18:36:16.712 check method
2013-06-25 18:36:27.669 check method end <-- 10.957 secs
2013-06-25 18:36:27.670 check define
2013-06-25 18:36:30.128 check define end <-- 2.458 secs
检查2:
2013-06-25 18:37:18.900 check method
2013-06-25 18:37:28.678 check method end <-- 9.778 secs
2013-06-25 18:37:28.679 check define
2013-06-25 18:37:31.136 check define end <-- 2.457 secs