Assigning to self in Objective-C(在 Objective-C 中分配给自己)
问题描述
我来自 C++ 世界,所以分配 this
的想法让我不寒而栗:
I'm from the C++ world so the notion of assigning this
makes me shudder:
this = new Object; // Gah!
但在 Objective-C 中有一个类似的关键字,self
,这是完全可以接受的:
But in Objective-C there is a similar keyword, self
, for which this is perfectly acceptable:
self = [super init]; // wait, what?
许多示例 Objective-C 代码在 init
例程中使用上述行.我的问题:
A lot of sample Objective-C code uses the above line in init
routines. My questions:
1) 为什么分配给 self
有意义(诸如因为语言允许"之类的答案不算数)
1) Why does assignment to self
make sense (answers like "because the language allows it" don't count)
2) 如果我没有在 init
例程中分配 self
会发生什么?我是否将我的实例置于某种危险之中?
2) What happens if I don't assign self
in my init
routine? Am I putting my instance in some kind of jeopardy?
3) 当下面的 if
语句失败时,这是什么意思,我应该怎么做才能从中恢复:
3) When the following if
statement fails, what does it mean and what should I do to recover from it:
- (id) init
{
self = [super init];
if (self)
{
self.my_foo = 42;
}
return self;
}
推荐答案
这是一个经常被新手挑战的话题:
This is a topic that is frequently challenged by newcomers:
- 威尔·希普利:self = [stupid init];
- Matt Gallagher:它是什么是指当你将 [super init] 分配给 self 时?
- Apple 文档:实现初始化程序
- Cocoa-Dev: self = [super init] 辩论
基本上,它源于这样一种想法,即超类可能已经覆盖了指定的初始化程序以返回与从 +alloc
返回的对象不同的对象.如果您没有将 super
的初始化程序的返回值分配给 self
,那么您可能正在处理一个部分初始化的对象(因为 super
initialized 与您正在初始化的对象不同).
Basically, it stems from the idea that a superclass may have over-ridden the designated initializer to return a different object than the one returned from +alloc
. If you didn't assign the return value of super
's initializer into self
, then you could potentially be dealing with a partially initialized object (because the object that super
initialized isn't the same object that you're initializing).
总体而言,super
很少会返回不同的内容,但在某些情况下确实会发生.
On the whole, it's pretty rare for super
to return something different, but it does happen in a couple of cases.
这篇关于在 Objective-C 中分配给自己的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Objective-C 中分配给自己
基础教程推荐
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01