标签:
直接可以用类名来执行的方法(类本身会在内存中占据存储空间,里面有类\对象方法列表)
1) 对象方法
2) 类方法
3) 类方法和对象方法可以同名
#import <Foundation/Foundation.h> @interface Person : NSOvject //类方法 { int age; } + (void)printClassName; @end @implementation Person + (void)printClassName { //error : instance variable ‘age‘ accessed in class method //实例变量age不能在类方法中访问,即类方法不能访问成员变量 NSLog(@"这个类叫做Person--%d", age); } - (void)test { NSLog(@"调用了test方法"); [Person test];//可以调用方法 } + (void)test { NSLog(@"lei"); //[Person test]; 会引发死循环 } @end int main() { Person *p = [Person new]; [p printClassName]; [Person test];//只能用类调用类方法 return 0; }
标签:
原文地址:http://www.cnblogs.com/IDRI/p/4946084.html