swift – 为超类创建初始化器返回一个特定的子类?

swift – 为超类创建初始化器返回一个特定的子类?,第1张

概述参见英文答案 > Custom class clusters in Swift                                    4个 我正在Swift中创建一个单元框架,它有不同单位的测量超类和子类,如Mass和Volume.一个功能是允许框架正确猜测它创建的单元并返回正确的类.示例代码: class Measurement { var unitString : Str 参见英文答案 > Custom class clusters in Swift                                    4个
我正在Swift中创建一个单元框架,它有不同单位的测量超类和子类,如Mass和Volume.一个功能是允许框架正确猜测它创建的单元并返回正确的类.示例代码:

class Measurement {   var unitString : String   init(unkNownUnit: String) {       // checks if the unit is either Volume or Mass,and returns an instance of that class   }}class Volume : Measurement {    init(unitString: String) {    }}class Mass : Measurement {    init(unitString: String) {    }}let mass = Mass("kg")                   // class: Masslet volume = Volume("ml")               // class: Volumelet shouldBeVolume = Measurement("ml")  // class: Volumelet shouldBeMass = Measurement("kg")    // class: Mass

是否有可能让一个继承的类在初始化时创建特定子类的对象?

library在GitHub上命名为Indus Valley和开源

解决方法 它正在快速而松散地继承,让父类知道它的子类(非常差的反模式!)但这可行…

class Measurement {    var unitString : String    class func factory(unkNownUnit: String) -> Measurement {        if unkNownUnit == "kg" {            return Mass(myUnit: unkNownUnit)        } else { // Random default,or make func return Measurement? to trap            return Volume(myUnit: unkNownUnit)        }    }    init(myUnit: String) {        // checks if the unit is either Volume or Mass,and returns an instance of that class        self.unitString = myUnit    }}class Volume : Measurement {}class Mass : Measurement {}let mass = Mass(myUnit: "kg")                   // class: Masslet volume = Volume(myUnit: "ml")               // class: Volumelet shouldntBeVolume = Measurement(myUnit: "ml")  // class: Measurementlet shouldntBeMass = Measurement(myUnit: "kg")    // class: Measurementlet isVolume = Measurement.factory("ml")  // class: Volumelet shouldBeMass = Measurement.factory("kg")    // class: Mass
总结

以上是内存溢出为你收集整理的swift – 为超类创建初始化器返回一个特定的子类?全部内容,希望文章能够帮你解决swift – 为超类创建初始化器返回一个特定的子类?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1016717.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存