A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© m573555543 中级黑马   /  2014-5-5 15:39  /  1107 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 m573555543 于 2014-5-7 10:15 编辑

@implementation Person
- (void)test1
{
    _age = 20;

    int _age = 10;
    NSLog(@"调用了-test1方法-%d", _age);
    [self test2];
}

- (void)test2
{
    int _age = 10;
    NSLog(@"调用了-test2方法-%d", self->_age);
}



+ (void)test3
{
    NSLog(@"调用了+test3方法");
    [self test4];
}

@end

int main()
{   
    Person *p = [Person new];
    [p test1];
    return 0;
}
这个为什么是
调用了-test1方法-10
调用了-test2方法-20

而不是调用了-test1方法-10
调用了-test2方法-10


点评

代码最好用插入代码的格式,不要直接复制粘贴,不会的参照论坛帖子http://bbs.itheima.com/thread-116527-1-1.html  发表于 2014-5-7 10:09
这是什么作业??  发表于 2014-5-5 16:08

4 个回复

正序浏览
葬花桥 发表于 2014-5-5 15:58
因为test2方法

注意其中的self-

明白了。谢谢
回复 使用道具 举报
因为test2方法
  1. - (void)test2
  2. {
  3.     int _age = 10;
  4.     NSLog(@"调用了-test2方法-%d", self->_age);
  5. }
复制代码

注意其中的self-<_age,这个是调用的是成员变量_age,而不是方法中的局部变量_age
成员变量_age在test1方法中被赋值为20,所以这里输出为20而不是局部变量的10
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马