码迷,mamicode.com
首页 > 其他好文 > 详细

闭包和面向对象设计

时间:2017-04-26 11:50:27      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:extent   nbsp   prot   function   var   ons   log   console   ext   

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

 

闭包和面向对象设计

标签:extent   nbsp   prot   function   var   ons   log   console   ext   

原文地址:http://www.cnblogs.com/t1amo/p/6767634.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!