码迷,mamicode.com
首页 > 其他好文 > 详细

OC -- 类方法和对象方法

时间:2015-07-22 01:31:30      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:

#import <Foundation/Foundation.h>

 

@interface Person : NSObject

 

@property (nonatomic, retain) NSString *name;

@property (nonatomic, assign) int age;

 

- (void)print;       // 对象方法

+ (void)introduce;   // 类方法

 

@end

 

@implementation Person

 

- (void)print{

    // 以下方式均可以输出对象的属性

    NSLog(@"name = %@, age = %d", self.name, self.age);

    NSLog(@"name = %@, age = %d", _name, _age);

    NSLog(@"name = %@, age = %d", [self name], [self age]);

}

 

+ (void)introduce{

    NSLog(@"欢迎来到 以神之名 的博客园!");

}

 

@end

 

int main(int argc, const char * argv[]){

 

    Person *p = [[Person alloc] init];

    Person *p2 = [[Person alloc] init];

    [p setName:@"Jerry"];

    [p setAge:10];

    p2.name = @"Tom";

    p2.age = 12;

    

    [p print];

    [p2 print];

    [Person introduce];

    

    return 0;

}

 

OC -- 类方法和对象方法

标签:

原文地址:http://www.cnblogs.com/lianfu/p/4665988.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!