Why can#39;t Swift initializers call convenience initializers on their superclass?(为什么 Swift 初始化器不能在其超类上调用便利初始化器?)
问题描述
考虑两个类:
class A {
var x: Int
init(x: Int) {
self.x = x
}
convenience init() {
self.init(x: 0)
}
}
class B: A {
init() {
super.init() // Error: Must call a designated initializer of the superclass 'A'
}
}
我不明白为什么不允许这样做.最终,每个类的指定初始化程序都会使用它们需要的任何值来调用,那么为什么我需要在 B
的 init
中通过为 指定默认值来重复自己x
再次,当 A
中的方便 init
可以正常工作?
I don't see why this isn't allowed. Ultimately, each class's designated initializer is called with any values they need, so why do I need to repeat myself in B
's init
by specifying a default value for x
again, when the convenience init
in A
will do just fine?
推荐答案
这是 Swift Programming Guide 中指定的Initializer Chaining"规则的第 1 条,内容如下:
This is Rule 1 of the "Initializer Chaining" rules as specified in the Swift Programming Guide, which reads:
规则 1:指定初始化程序必须从他们的直接超类.
Rule 1: Designated initializers must call a designated initializer from their immediate superclass.
https://developer.apple.com/库/内容/文档/Swift/Conceptual/Swift_Programming_Language/Initialization.html
强调我的.指定初始化器不能调用便利初始化器.
Emphasis mine. Designated initializers cannot call convenience initializers.
有一个图表与规则一起展示了允许哪些初始化程序方向":
There is a diagram that goes along with the rules to demonstrate what initializer "directions" are allowed:
这篇关于为什么 Swift 初始化器不能在其超类上调用便利初始化器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么 Swift 初始化器不能在其超类上调用便利初始化器?
基础教程推荐
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01