在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;
}
时间: 2024-10-09 11:03:03