欢迎来到天天文库
浏览记录
ID:52289998
大小:25.50 KB
页数:2页
时间:2020-03-26
《Java面向对象程序设计 教学课件 ppt 作者 聂哲 单元测试试卷 单元测试卷二答案.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、《面向对象程序设计(Java)》单元测试2答案一、选择与填空1.Color=blue2.D3.private(或私有)4.A、C5.父类、B、D6.A7.A8.C9.D10.B11.run!20.03二、编程题1.Light类classLight{privateintwatts;privatebooleanindicator;publicLight(intwatts){this.watts=watts;}publicLight(intwatts,booleanindicator){this.watts=watts;this.indicator=indicator;《面
2、向对象程序设计(Java)》答卷第2页(共4页)}publicvoidswitchOn(){indicator=true;}publicvoidswitchOff(){indicator=false;}publicvoidprintInfo(){if(indicator)System.out.println("灯的瓦数为:"+watts+"灯的状态为:开");elseSystem.out.println("灯的瓦数为:"+watts+"灯的状态为:关");}}2.TubeLight类classTubeLightextendsLight{privateinttubeLe
3、ngth;privateStringcolor;publicTubeLight(intwatts,inttubeLength,Stringcolor){super(watts);this.tubeLength=tubeLength;this.color=color;}publicvoidprintInfo(){super.printInfo();System.out.println("灯管的长度为:"+tubeLength+"灯光颜色为:"+color);}}3.测试程序classTest{publicstaticvoidmain(Stringargs[]){Tube
4、Lighttube=newTubeLight(32,50,"white");tube.switchOn();tube.printInfo();}}《面向对象程序设计(Java)》答卷第2页(共4页)
此文档下载收益归作者所有