class Place { let what: String let location:Geolocation // 每个类必须要有一个init初始化方法 init (what: String,location: Geolocation) { self.what = what self.location = location } /*** convenIEnce区别于init方法,一个类中可以有多个convenIEnce初始化方法 在每一个convenIEnce初始化方法中必须有一个本类中的指定初始化方法,(self.init),因为convenIEnce并不是非常全面的对本类中的所有属性初始化,如果不调用将报错***/ convenIEnce init(what: String,latitude: Double,longitude:Double) { let location = Geolocation(latitude: latitude,longitude: longitude) self.init(what: what,location: location) }}//Class的继承class PlaceOfInterest:Place { let year: Int16 init(what:String,year: Int16,longitude: Double) { self.year = year// 对本类中的属性初始化 let location = Geolocation(latitude:latitude,longitude:longitude) super.init(what: what,location:location)// 必须调用父类中的指定初始化方法,不能调用父类中的convenIEnce初始化方法 }}总结
以上是内存溢出为你收集整理的swift中Class的继承全部内容,希望文章能够帮你解决swift中Class的继承所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)