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

self & this

时间:2017-08-10 01:27:13      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:release   ref   return   auto   lease   eth   运行   对象   body   

对象:指向对象的首地址;

函数:代表了函数运行的主要上下文;

内部:在类的内部使用。

 

self

Within the body of a class method, self refers to the class object itself. You might implement a factory method like this:

+ (id)myClass {
    return [[[self alloc] init] autorelease];
}

self & this

标签:release   ref   return   auto   lease   eth   运行   对象   body   

原文地址:http://www.cnblogs.com/feng9exe/p/7337020.html

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