实现如下类之间的继承关系,并编写Music类来测试这些类。
1 package su; 2 3 class Instrument{ 4 public void play() { 5 System.out.println("弹奏乐器"); 6 } 7 8 public void play2() { 9 // TODO 自动生成的方法存根 10 11 } 12 } 13 14 class Wind extends Instrument{ 15 public void play() { 16 System.out.println("弹奏Wind"); 17 } 18 public void play2() { 19 System.out.println("调用Wind的play2"); 20 } 21 } 22 23 class Brass extends Instrument{ 24 public void play() { 25 System.out.println("弹奏Brass"); 26 } 27 public void play2() { 28 System.out.println("调用Brass的play2"); 29 } 30 } 31 32 public class WindBrass { 33 public static void tune(Instrument i) { 34 i.play(); 35 i.play2(); 36 } 37 38 public static void main(String[] args) { 39 // TODO 自动生成的方法存根 40 Wind w=new Wind(); 41 tune(w); 42 43 } 44 45 }
编写一个Java应用程序,该程序包括3个类:Monkey类、People类和主类E。要求:
(1) Monkey类中有个构造方法:Monkey (String s),并且有个public void speak()方法,在speak方法中输出“咿咿呀呀......”的信息。
(2)People类是Monkey类的子类,在People类中重写方法speak(),在speak方法中输出“小样的,不错嘛!会说话了!”的信息。
(3)在People类中新增方法void think(),在think方法中输出“别说话!认真思考!”的信息。
(4)在主类E的main方法中创建Monkey与People类的对象类测试这2个类的功能。
1 package su; 2 3 class monkey{ 4 public void speak(){ 5 System.out.println("咿咿呀呀......."); 6 } 7 } 8 9 class people extends monkey{ 10 public void speak() { 11 System.out.println("小样的,不错嘛,会说话了!"); 12 } 13 void think() { 14 System.out.println("别说话,认真思考"); 15 } 16 } 17 18 public class ACE { 19 public static void main(String[] args) { 20 monkey m = new monkey(); 21 people p1 = new people(); 22 people p2 = new people(); 23 m.speak(); 24 p1.speak(); 25 p2.think(); 26 } 27 28 }