标签:
1.类方法声明
格式
特征
类方法的好处:
类方法的场合:
示例
//声明没有返回值的类方法
+ (void)method;
//声明有返回值的类方法
+ (int)method;
//声明有返回值有参数的类方法
+ (int)method: (int)var;
//声明有返回值有多个参数的类方法
+ (int)method: (int)var1 andVar2: (int)var2;
+ 必须写在以@implementation开头,@end之间
+ 在声明的后面加上{}即表示实现
+ 将需要实现的代码写在{}中
类方法
使用场合:
类方法和对象方法可以同名
标签:
原文地址:http://www.cnblogs.com/coderxg/p/4942443.html