2008年上半年軟件設(shè)計師下午試卷II[8]

軟件設(shè)計師 責任編輯:zenghanpei 2008-09-18

添加老師微信

備考咨詢

加我微信

摘要:【Java代碼】classLight{//電燈類publicvoidturnLight(intdegree){//調(diào)整燈光亮度,0表示關(guān)燈,100表示亮度最大}};classTV{//電視機類publicvoidsetChannel(intchannel){//0表示關(guān)機,1表示開機并切換到1頻道}};interfaceCommand{//抽象命令類voidon();voidoff();};cl

【Java 代碼】

class Light{  //電燈類

public void turnLight(int degree){ //調(diào)整燈光亮度,0表示關(guān)燈,100表示亮度最大}

};

 

class TV{ //電視機類

public void setChannel(int channel){// 0表示關(guān)機,1表示開機并切換到1頻道  }

};

 

interface Command{ //抽象命令類

  void on();

  void off();

};

 

class RemoteController{  //遙控器類

  protected Command []commands = new Command[4];

//遙控器有4個按鈕,按照編號分別對應(yīng)4個Command對象

  public void onPressButton(int button){

//按鈕被按下時執(zhí)行命令對象中的命令

  if(button % 2 == 0)commands[button].on();

  else commands[button].off();

  }

  public void setCommand(int button, Command command){

  (1)  = command; //設(shè)置每個按鈕對應(yīng)的命令對象

  }

};

 

class LightCommand implements Command{  //電燈命令類

  protected Light light;  //指向要控制的電燈對象

  public void on(){light.turnLight(100);};

  public void off(){light. (2);};

  public LightCommand(Light light){this.light = light;};

};

 

class TVCommand implements Command{ //電視機命令類

  protected TV tv;  //指向要控制的電視機對象

  public void on(){tv. (3);};

  public void off(){tv.setChannel(0);};

  public TVCommand(TV  tv){this.tv = tv;};

};

更多資料
更多課程
更多真題
溫馨提示:因考試政策、內(nèi)容不斷變化與調(diào)整,本網(wǎng)站提供的以上信息僅供參考,如有異議,請考生以權(quán)威部門公布的內(nèi)容為準!

軟考備考資料免費領(lǐng)取

去領(lǐng)取

!
咨詢在線老師!