首页 > 编程语言 > 详细

javascript练习-私有状态

时间:2015-12-20 19:13:48      阅读:159      评论:0      收藏:0      [点我收藏+]

在经典的面向对象编程中,经常需要将对象的某个状态封装或隐藏在对象内,只有通过对象的方法才能访问这些状态,对外只暴露一些重要的状态可以直接编写。这是就需要私有状态。

function Range(from, to){
this.from = function(){return from;}
this.to = function(){return to;}
}

Range.prototype = {
constructor: Range,
includes:function(x){return this.from() <= x && x <= this.to();},
foreach:function(f){
for(var x = Math.ceil(this.from()),max = this.to();x < max;x++)f(x);
},
toString:function(){
return "(" + this.from() + "..." + this.to() + ")";
}
}

 

javascript练习-私有状态

原文:http://www.cnblogs.com/zjtTT/p/5061335.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!