面向对象编程增加间接层对程序的扩展
摘要:
一下通过代码做出解释:View Code 1 #import <Foundation/Foundation.h> 2 int main(int argc, const char * argv[]) 3 { 4 @autoreleasepool 5 { 6 NSLog(@"The numbers forme 1 to 5"); 7 for(int i = 1; i <= 5; i++) 8 { 9 NSLog(@"%d\n", i);10 }11 }12 return 0;... 阅读全文
posted @ 2012-04-19 12:26 呓语若梦半浮生 阅读(350) 评论(0) 推荐(0) 编辑