原型模式

原型模式是一种基于继承的模式。其为实现继承的一种简单方式,它还可以带来一些性能上的提升。因为在对象定义的一个函数,它们都是引用创建,而不是创建自己的单份拷贝。

方式一 使用Object.create方法,该方法可以传递两个参数Object.create(prototype,optionalDescriptorObjects)
Object.create(prototype,optionalDescriptorObjects)

方式二

var prototypeMode = (function () {
    function F() { }

    return function (proto) {
        F.prototype = proto;
        return new F();
    }
})()

FisherKai
14 声望1 粉丝