objective-c +方法 -方法的使用
在Oc中,方法分为类方法和实例方法。
+为类方法,这类方法是可以直接用类名来调用的。
-为实例方法,必须使用类的实例才可以调用的。
@interface people : NSObject
-(void)eat;
+(void)eat;
@end
@implementation people
-(void)eat
{
NSLog(@"我是被类的实例调用-方法");
}
+(void)eat
{
NSLog(@"我是被类调用的+方法");
}
@end
#import <Foundation/Foundation.h>
#import "people"
int main(int argc, const char * argv[]) {
@autoreleasepool {
people *man=[[people alloc]init];
[man eat];
[people eat];
}
return 0;
}
所有的往事,在我看来都只是一瞬间,莫留念……
这里的黎明静悄悄,外界的入侵者,扰人清梦可要受到惩罚的。