码迷,mamicode.com
首页 > 编程语言 > 详细

java 继承与多态

时间:2016-10-23 20:47:59      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:log   nbsp   ext   main   style   ring   images   new   str   

技术分享

Example5_11.java

class  动物 {
   void cry() {
   }  
}
classextends 动物 {
   void cry() {
      System.out.println("汪汪....."); 
   }  
}
classextends 动物  {
   void cry() {
      System.out.println("喵喵....."); 
   }  
}
public class Example5_11 { 
   public static void main(String args[]) {
      动物 animal;
      animal = new 狗();
      animal.cry(); 
      animal=new 猫();
      animal.cry();
  }
}

 

java 继承与多态

标签:log   nbsp   ext   main   style   ring   images   new   str   

原文地址:http://www.cnblogs.com/yihujiu/p/5990612.html

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