码迷,mamicode.com
首页 > Web开发 > 详细

8.js模式-状态模式

时间:2015-10-11 19:27:23      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:

1. 状态模式

var offLightState = function(light){

      this.light = light;

}

 

  • offLightState.prototype.buttonWasPressed = function(){

      console.log(‘弱光‘);

      this.light.setState(this.weakLightState);

}

 

var weakLightState = function(light){

      this.light = light;

}

 

weakLightState.prototype.buttonWasPressed = function(){

      console.log(‘弱光‘);

      this.light.setState(this.strongLightState);

}

 

var strongLightState = function(light){

      this.light = light;

}

 

strongLightState.prototype.buttonWasPressed = function(){

      console.log(‘弱光‘);

      this.light.setState(this.offLightState);

}

 

var light = function(){

      this.offLightState = new offLightState(this);

      this.weakLightState = new weakLightState(this);

      this.strongLightState = new strongLightState(this);

      this.button = null;

}

 

light.prototype.init = function(){

      this.currentState = this.offLightState;

     

      this.button.onclick = function(){

             this.currentState.buttonWasPressed();

      }

}

 

light.prototype.setState = function(state){

      this.currentState = state;

}

 

var light = new light();

light.init();

8.js模式-状态模式

标签:

原文地址:http://www.cnblogs.com/SLchuck/p/4869722.html

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