• 常用的设计模式


    常用的设计模式
    `

            let TankFactor = {
            tankList: {
                "01": function() {
                    const img = new Image(); 
                    img.src = "./images/01.jpg";
                    return img;
                },
                "02": function() {
                    const img = new Image(); // 创建一张图片
                    img.src = "./images/02.jpg";
                    return img;
                },
                "03": function() {
                    const img = new Image(); 
                    img.src = "./images/03.jpg";
                    return img;
                },
                "04": function() {
                    const img = new Image(); 
                    img.src = "./images/04.jpg";
                    return img;
                }
            },
            create: function(type) { // 通过create来创建坦克 
                let info = this.tankList[type]();    // this.tankList['01']
                return info;
            }
        }
        let v1 = TankFactor.create('02');
        document.body.appendChild(v1);
    
    
  • 相关阅读:
    堆栈、堆、方法区介绍
    spring 定时器
    fastJSON 使用总结
    [Python]collections.defaultdict()模块使用
    LeetCode 18.四数之和
    [Python]调用shell cmd的几种方式
    LeetCode 16. 最接近的三数之和
    Objective C 十六进制 十进制互转
    LeetCode 15. 三数之和
    要做的题
  • 原文地址:https://www.cnblogs.com/lyly96720/p/12526840.html
Copyright © 2020-2023  润新知