美文网首页
設計模式-工廠模式

設計模式-工廠模式

作者: 行走在黑夜下的舞者 | 来源:发表于2021-07-13 16:32 被阅读0次

    工廠模式其实就是将创建对象的过程单独封装, 其實就是無腦傳參

    function Order(name, num, size, money) {

        this.name = name

        this.num= num

        this.size= size

        this.money= money

    }

    就像在餐廳點餐一樣, 工廠函數只需要點餐這個過程就可以了, 然後把這個實例結果完成就可以了

    相关文章

      网友评论

          本文标题:設計模式-工廠模式

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