黑马程序员技术交流社区

标题: self [打印本页]

作者: LuciferTJD    时间: 2015-4-9 14:59
标题: self
对象方法利用"self->成员变量名"访问当前对象内部的成员变量
#import <Foundation/Foundation.h>

@interface Person : NSObject
{
    int _age;
}
- (void)test1;
- (void)test2;
@end

@implementation Person
- (void)test1
{
    _age = 20;
    [self test2];
}
- (void)test2
{
   
    int _age = 10;
    NSLog(@"调用了-test2方法-%d", self->_age);
}
@end

int main()
{
    Person *p = [Person new];
    [p test1];
    return 0;
}

//输出:调用了-test2方法-20




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2