美文网首页
Prototype(原型)

Prototype(原型)

作者: 863cda997e42 | 来源:发表于2017-09-25 13:18 被阅读4次

创建一个新的对象,然后通过复制现有的对象,称为原型。
原型本身使用模板创建,后续实例是克隆模板产生的。

class ChungasRevengeDisplay {
    var name: String?
    let font: String

    init(font: String) {
        self.font = font
    }

    func clone() -> ChungasRevengeDisplay {
        return ChungasRevengeDisplay(font:self.font)
    }
}
/*:
### Usage
*/
let Prototype = ChungasRevengeDisplay(font:"GotanProject")

let Philippe = Prototype.clone()
Philippe.name = "Philippe"

let Christoph = Prototype.clone()
Christoph.name = "Christoph"

let Eduardo = Prototype.clone()
Eduardo.name = "Eduardo"

相关文章

网友评论

      本文标题:Prototype(原型)

      本文链接:https://www.haomeiwen.com/subject/iiorextx.html