皮皮学,免费搜题
登录
logo - 刷刷题
搜题
【简答题】
阅读以下说明和Java程序,填补代码中的空缺(1)~(5),将解答填入答题纸的对应栏内。 【说明】 对部分乐器进行建模,其类图如图6-1所示,包括:乐器(Instrument)、管乐器(Wind)、打击乐器( Percussion)、弦乐器(Stringed)、木管乐器(Woodwind)、铜管乐器(Brass)。 图6-1 类图 下面是实现上述设计的Java代码,其中音乐类(Music)使用各类乐器(Instrument)进行演奏和调音等操作。 【Java代码】 enum Note{ /* 枚举各种音调 */ MIDD[LE_C, C_SHARP, B_FLAT; //其他略 } interface Instrument { /* 接口,乐器 */ (1) ; //play方法接口 void adjust() ; //adjust方法接口 } class Wind (2) { public void play(Note n) { System.out.println("Wind.play()"+n); } public void adjust() { System.out.println("Wind.adjust()"); } } /* 类Percussion和Stringet实现代码略 */ class Brass (3) { public void play(Note n) { System.out.println("Brass.play()"+n); } public void adjust () { System.out.println("Brass.adjust()"); } } class Woodwind extends Wind { public void play (Note n) { System.out.println("Woodwind.play()"+n); } } public void tune(Instrument i) { i.play(Note.MIDDLE_C); } void adjust(Instrument i) { i.adjust(); } void tuneAll (4) e ) { class Music { for(lnstrument i : e) { adjust(i); tune(i); } } public static void main(String[] args) { Music music= (5) Music(); Instrument[] orchestra={ new Wind(), new Woodwind() }; music.tuneAll(orchestra); } 奉程序运行后的输出结果为: Wind.adjust() Wind.play() MIDDLE_C Wind.adjust() Woodwind.play() MIDDLE_C
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
参考答案:
举一反三
【简答题】根据句意及单词首字母完成句子。 1. Don’t c too much about it. It's not good. 2. We should speak English as much as p in class. 3. The school things i pens , pencils , rulers and other things. 4. Don't pull the door. ...
【单选题】以下说法不正确的是( )。
A.
HTML5 标准还在制定中
B.
HTML5兼容以前HTML4下浏览器
C.
标签替代Flash
D.
简化的语法
【单选题】下列不属于课程特点的是( )。
A.
普及性
B.
基础性
C.
全面性
D.
科学性
【多选题】关于下列图片中的档位,描述正确的是
A.
欧姆档;测量电阻值
B.
二极管档;测量二极管PN结正向导通电压
C.
蜂鸣档;测量短路
D.
交流电压档;测量交流电压值
【简答题】小题1:All the people b_________into laughter when they heard the funny story. 小题2:We should p_______the wild animals. It is very important. 小题3:I have to get f________with the new classmates in the new ...
【多选题】以下说法中,正确的是( )
A.
1978年宪法是我国的现行宪法
B.
宪法具有最高法律效力
C.
一切法律、行政法规和地方法规都不得与宪法相抵触
D.
宪法的修改,须由全国人民代表大会以全体代表的2/3以上多数通过。
E.
宪法规定了人民对国家权力活动进行监督
【简答题】在ASP.NET中,一个页通常有两个文件组成,如 main.aspx 和 main.aspx.cs, 解释一下它们之间的关系 ?
【简答题】Wildlife for Human Consumption p Suppose you have visited a Live Market recently in the town and discovered the following wildlife was on sale for human consumption. The salesmen promised the customer...
【单选题】下列不属于课程特点的是( )。
A.
普及性
B.
基础性
C.
全面性
D.
科学性
【判断题】创业资源按照性质可以分为人力资源、财务资源、物质资源、技术资源和组织资源。
A.
正确
B.
错误
相关题目:
参考解析:
知识点:
题目纠错 0
发布
创建自己的小题库 - 刷刷题