在 Objective-C 中创建构造函数

发布于 2024-11-18 07:27:22 字数 134 浏览 0 评论 0原文

为什么我们在 Objective C 中创建构造函数时总是这样做?

self = [super init];
if ( self ) {
    //Initialization code here
}

Why do we always do this when creating constructors in Objective C?

self = [super init];
if ( self ) {
    //Initialization code here
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

酒浓于脸红 2024-11-25 07:27:22

你可以在 Objective-C 中创建构造函数和析构函数

-(id) init
{
    self = [super init];
    if(self)
    {
       //do something
    }
    return self;
}
-(void) dealloc
{
   [super dealloc];
}

you can create constructor and destructor in objective-c with

-(id) init
{
    self = [super init];
    if(self)
    {
       //do something
    }
    return self;
}
-(void) dealloc
{
   [super dealloc];
}
彡翼 2024-11-25 07:27:22

我们重新分配给 self,因为允许 [super init] 返回与调用它的对象不同的对象。我们if (self)因为[super init]允许返回nil

We reassign to self because [super init] is allowed to return a different object than the one it was called on. We if (self) because [super init] is allowed to return nil.

昨迟人 2024-11-25 07:27:22

self 是一个基于某些超类的类(例如 UIViewController、NSObject - 请参阅您的界面文件以确定是哪一个)。超类可能需要某种形式的初始化才能使子类按预期工作。因此,通过首先初始化超类,我们确保设置默认属性等。如果不首先初始化超类,我们可能会遇到一些非常意外的行为,尤其是在 ViewController 等更复杂的对象中。

self is a class based on some superclass (e.g. UIViewController, NSObject - see your interface file to be sure which one). The superclass might need some form of initialization in order for the subclass to work as expected. So by first initializing the superclass we make sure default properties and the like are set. Without initializing the superclass first, we might experience some very unexpected behavior, especially in more complex objects like ViewControllers and the like.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文