面向对象编程和简单的设计模式1

36次阅读

共计 442 个字符,预计需要花费 2 分钟才能阅读完成。

先说说,
设计模式:
直接,
简单,
暴力。
上代码:

// 单体模式
var teacer={
    name:'lewis',
    age:33,
    showName:function(){return this.name}
}
teacer.showName();

// 原型模式
// 属性放在构造函数里,方法放在原型上
function teacer(name,age){
    this.name=name;
    this.age=age;
};
teacer.prototype.showName=function(){return this.name;}
var lewis=new teacer('lewis',17);

lewis.showName();

// 伪类模式
class teacer{constructor(name,age){
        this.name=name;
        this.age=age;
    }
    showName(){return this.name;}
}

var lewis=new teacer('lewis',22);
lewis.showName();

正文完
 0