示例#1
0
 public TV()
 {
     this.currentState = new Off(this);
 }
示例#2
0
 public TV()
 {
     //Starting with Off state
     this.currentState = new Off();
 }