Why are static methods slower than failable initializers?

前端 未结 0 1153
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-28 20:27

Consider the Swift struct below

struct MyStruct {
    static func create() -> MyStruct? {
        return nil
    }

    init?() {
        return nil
    }
}


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题