博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JAVA的extends用法
阅读量:5318 次
发布时间:2019-06-14

本文共 1199 字,大约阅读时间需要 3 分钟。

      理解继承是理解面向对象程序设计的关键。在中,通过关键字extends继承一个已有的类,被继承的类称为父类(超类,基类),新的类称为子类(派生类)。在Java中不允许多继承。

(1)继承

[java]   
 
 
  1. class Animal{  
  2.     void eat(){  
  3.         System.out.println("Animal eat");  
  4.     }  
  5.     void sleep(){  
  6.         System.out.println("Animal sleep");  
  7.     }  
  8.     void breathe(){  
  9.         System.out.println("Animal breathe");  
  10.     }  
  11. }  
  12.   
  13. class Fish extends Animal{  
  14. }  
  15.   
  16. public class TestNew {  
  17.     public static void main(String[] args) {  
  18.         // TODO Auto-generated method stub  
  19.         Animal an = new Animal();  
  20.         Fish fn = new Fish();  
  21.           
  22.         an.breathe();  
  23.         fn.breathe();  
  24.     }  
  25. }  

在eclipse执行得:

Animal breathe! 
Animal breathe! 
.java文件中的每个类都会在文件夹bin下生成一个对应的.class文件。执行结果说明派生类继承了父类的所有方法。

(2)覆盖

[java]   
 
 
  1. class Animal{  
  2.     void eat(){  
  3.         System.out.println("Animal eat");  
  4.     }  
  5.     void sleep(){  
  6.         System.out.println("Animal sleep");  
  7.     }  
  8.     void breathe(){  
  9.         System.out.println("Animal breathe");  
  10.     }  
  11. }  
  12.   
  13. class Fish extends Animal{  
  14.     void breathe(){  
  15.         System.out.println("Fish breathe");  
  16.     }  
  17. }  
  18.   
  19. public class TestNew {  
  20.     public static void main(String[] args) {  
  21.         // TODO Auto-generated method stub  
  22.         Animal an = new Animal();  
  23.         Fish fn = new Fish();  
  24.           
  25.         an.breathe();  
  26.         fn.breathe();  
  27.     }  
  28. }  

执行结果:

Animal breathe

Fish breathe

在子类中定义一个与父类同名,返回类型,参数类型均相同的一个方法,称为方法的覆盖。方法的覆盖发生在子类与父类之间。另外,可用super提供对父类的访问。

转载于:https://www.cnblogs.com/remember-forget/p/6110853.html

你可能感兴趣的文章
hibernate分页查询的实现
查看>>
内存加载DLL
查看>>
BFC的布局规则以及触发条件
查看>>
八大排序算法
查看>>
highly variable gene | 高变异基因的选择 | feature selection | 特征选择
查看>>
事件响应模型(游戏引擎、JAVA中等应用)
查看>>
ARM学习笔记14——C语言和汇编相互套用
查看>>
学习笔记1126 - Fib的计算方法,降低了时间复杂度
查看>>
3-8 & 3-9Unicode 编码
查看>>
2016Unite Shanghai 总结
查看>>
zhlan--Python中的字典遍历方法 & 字典取值
查看>>
【iHMI43 4.3寸液晶模块】demo例程(版本1.02)发布
查看>>
【资料下载区】【iCore、 iCore2相关资料】更新日期2017/1/11
查看>>
ResNet,DenseNet
查看>>
我想学前端动画-CSS之transition
查看>>
WiFi攻击的三种方式
查看>>
团队作业4----第一次项目冲刺(Alpha版本)4.29
查看>>
JS 获取当前页面地址 获取当前页面名称
查看>>
[Kafka] - Kafka内核理解:Message
查看>>
Python+selenium自动化测试环境安装
查看>>