闭包和面向对象设计

1.用闭包来实现面向对象设计

复制代码
var extent=(function(){
    var value=0;
    return {
        call:function(){
            value++;
            console.log(value);
        }
    };
})();
复制代码

extent.call()  //1

extent.call()  //2

extent.call()  //3

2.对象字面量法

复制代码
var extent={
    value:0,
    call:function(){
        this.value++;
        console.log(this.value);
    }
}
extent.call()  //1
extent.call()   //2
extent.call()   //3
复制代码

3.组合使用构造函数模式和原型模式

复制代码
var Extent=function(){
    this.value=0;
};

Extent.prototype.call=function(){
    this.value++;
    console.log(this.value);
};

var extent=new Extent();

extent.call(); //1
extent.call(); //2
extent.call();//3
复制代码

 

posted @   T1amo  阅读(140)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示