Swift 类中的错误:属性未在 super.init 调用中初始化 [英] Error in Swift class: Property not initialized at super.init call

查看:25
本文介绍了Swift 类中的错误:属性未在 super.init 调用中初始化的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有两个类,ShapeSquare

class Shape {
    var numberOfSides = 0
    var name: String
    init(name:String) {
        self.name = name
    }
    func simpleDescription() -> String {
        return "A shape with (numberOfSides) sides."
    }
}

class Square: Shape {
    var sideLength: Double

    init(sideLength:Double, name:String) {
        super.init(name:name) // Error here
        self.sideLength = sideLength
        numberOfSides = 4
    }
    func area () -> Double {
        return sideLength * sideLength
    }
}

通过上面的实现,我得到了错误:

With the implementation above I get the error:

property 'self.sideLength' not initialized at super.init call
    super.init(name:name)

为什么要在调用super.init之前设置self.sideLength?

Why do I have to set self.sideLength before calling super.init?

推荐答案

引自 The Swift Programming Language,它回答了您的问题:

Quote from The Swift Programming Language, which answers your question:

Swift 的编译器执行四项有用的安全检查以确保两阶段初始化无误完成:"

"Swift’s compiler performs four helpful safety-checks to make sure that two-phase initialization is completed without error:"

安全检查 1 指定的初始化程序必须确保所有的由它的类引入的属性在它之前被初始化最多委托一个超类初始化器."

Safety check 1 "A designated initializer must ensure that all of the "properties introduced by its class are initialized before it delegates up to a superclass initializer."

摘自:Apple Inc.The Swift Programming Language".电子书.https://itunes.apple.com/us/book/swift-programming-language/id881256329?mt=11

Excerpt From: Apple Inc. "The Swift Programming Language." iBooks. https://itunes.apple.com/us/book/swift-programming-language/id881256329?mt=11

这篇关于Swift 类中的错误:属性未在 super.init 调用中初始化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆