本帖最后由 程序猿-2014 于 2014-4-11 14:35 编辑
#import <Foundation/Foundation.h> @interface Person : NSObject { int _age; } - (void)setAge: (int)age; - (int)age; @end
@implementation Person { int _age; } - (void)setAge: (int)age { self.age = age } - (int)age { return _age; } @end 如题:题中的下划线中得self.age内存中得表现形式是什么啊
|