码迷,mamicode.com
首页 > 其他好文 > 详细

继承1

时间:2016-05-22 21:32:01      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

 1 package com.hanqi.z1p1;
 2 
 3 public class Instrument {
 4 
 5     public void play()
 6     {
 7         System.out.println("弹奏乐器");
 8     }
 9     
10     
11     
12 }
 1 package com.hanqi.z1p1;
 2 
 3 public class Wind extends Instrument {
 4 
 5     public void play()
 6     {
 7         System.out.println("弹奏Wind");
 8     }
 9     
10     
11     public void play2()
12     {
13         System.out.println("调用Wind的play2");
14     }
15     
16 }
 1 package com.hanqi.z1p1;
 2 
 3 public class Brass extends Instrument{
 4 
 5     public void play()
 6     {
 7         System.out.println("弹奏Brass");
 8     }
 9     
10     public void play2()
11     {
12         System.out.println("调用Brass的play2");
13     }
14     
15     
16     
17 }
 1 package com.hanqi.z1p1;
 2 
 3 public class Music {
 4 
 5     
 6     public static void tune(Instrument i) 
 7     {
 8     i.play();    
 9     }
10     
11     
12     public static void main(String[] args) {
13         // TODO 自动生成的方法存根
14 
15         Wind w=new Wind();
16         tune(w);
17         Brass b =new Brass();
18         tune(b);
19         
20         
21         
22         
23         
24     }
25 
26 }

运行结果:

技术分享

继承1

标签:

原文地址:http://www.cnblogs.com/miss123/p/5517827.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!