java 继承示例_Java中的继承类型以及示例

java 继承示例

Prerequisite: Inheritance and its implementation in Java

先决条件: 继承及其在Java中的实现

Java中的继承类型 (Type of inheritance in Java)

In Java programming, there are following types of the inheritances,

在Java编程中,有以下几种类型的继承

  1. Single Inheritance

    单继承

  2. Multiple Inheritances (Through Interface)

    多重继承(通过接口)

  3. Multilevel Inheritance

    多级继承

  4. Hierarchical Inheritance

    层次继承

1)单一继承 (1) Single Inheritance)

If a class extends another class (i.e. the only one class).

如果一个类扩展了另一个类(即唯一一个类)。

Syntax:

句法:

    class Parent {
// Fields and Methods
}
class Child extends Parent {
// Fields and Methods
}

Example of Single Inheritance:

单一继承的示例:

/*Java program to demonstrate the  
concept of inheritance */
// Parent class 
class Parent {
// The Parent class has one method
// displayParentMessage() method to print message of Parent Class
public void displayParentMessage() {
System.out.println("Hello, we are in parent class method");
}
}
// Sub class or derived class
class Child extends Parent {
// The Child subclass adds one more method
// displayChildMessage() method to print message of Parent Class
public void displayChildMessage() {
System.out.println("Hello, we are in child class method");
}
}
// Main class in this class we will create 
//object of parent and child class 
class Main {
public static void main(String[] args) {
// Creation of Parent class object
Parent p = new Parent();
// Calling Parent class method by Parent class object
p.displayParentMessage();
// Creation of Child class object
Child c = new Child();
// Calling Child class method by Child class object
c.displayChildMessage();
// Calling Parent class method by Child class object
c.displayParentMessage();
}
}

Output

输出量

D:\Programs>javac Main.java
D:\Programs>java Main
Hello, we are in parent class method
Hello, we are in child class method
Hello, we are in parent class method

2)多重继承(通过接口) (2) Multiple Inheritance (Through Interface))

If we extend more than one class. Java doesn’t support multiple inheritances directly but with the help of interface we can implement but it is similar to multiple inheritance.

如果我们扩展多个类。 Java不直接支持多重继承,但是借助我们可以实现的接口的帮助,它类似于多重继承。

Syntax:

句法:

    interface interface1 {
// Field and Method declaration
}
interface interface2 {
// Field and Method declaration
}
Class class_name implements interface1, interface2 {}

Example of Multiple Inheritance:

多重继承的例子:

/*Java program to demonstrate the  
concept of multiple inheritance */
interface Print {
void print();
}
interface Show {
void show();
}
class Main implements Print, Show {
public void print() {
System.out.println("Hello");
}
public void show() {
System.out.println("World");
}
public static void main(String args[]) {
Main obj = new Main();
obj.print();
obj.show();
}
}

Output

输出量

D:\Programs>javac Main.java
D:\Programs>java Main
Hello
World

3)多级继承 (3) Multilevel Inheritance)

If a classA extends by classB and classB extends by classC is called multilevel inheritance.

如果将classA扩展为classB ,将classB扩展为classC,则称为多级继承。

Syntax:

句法:

    class classA {
// Fields and Methods
}
class classB extends classA {
// Fields and Methods
}
class classC extends classB {
// Fields and Methods
}

Example of Multilevel Inheritance:

多级继承的示例:

/*Java program to demonstrate the  
concept of multilevel inheritance */
// ClassA class 
class ClassA {
// The ClassA class has one method
// displayClassAMessage() method to print message of ClassA Class
public void displayClassAMessage() {
System.out.println("Hello, we are in ClassA class method");
}
}
// ClassB class
class ClassB extends ClassA {
// The ClassB class adds one more method
// displayClassBMessage() method to print message of ClassB Class
public void displayClassBMessage() {
System.out.println("Hello, we are in ClassB class method");
}
}
// ClassC class
class ClassC extends ClassB {
// The ClassC class adds one more method
// displayClassCMessage() method to print message of ClassC Class
public void displayClassCMessage() {
System.out.println("Hello, we are in ClassC class method");
}
}
// Main class in this class we will create 
//object of ClassA and ClassB and ClassC class 
class Main {
public static void main(String[] args) {
// Creation of ClassA class object
ClassA ca = new ClassA();
// Calling ClassA class method by ClassA class object
ca.displayClassAMessage();
// Creation of ClassB class object
ClassB cb = new ClassB();
// Calling ClassB class method by ClassB class object
cb.displayClassBMessage();
// Calling ClassA class method by ClassB class object
cb.displayClassAMessage();
// Creation of ClassC class object
ClassC cc = new ClassC();
// Calling ClassC class method by ClassC class object
cc.displayClassCMessage();
// Calling ClassB class method by ClassC class object
cc.displayClassBMessage();
// Calling ClassA class method by ClassC class object
cc.displayClassAMessage();
}
}

Output

输出量

D:\Programs>javac Main.java
D:\Programs>java Main
Hello, we are in ClassA class method
Hello, we are in ClassB class method
Hello, we are in ClassA class method
Hello, we are in ClassC class method
Hello, we are in ClassB class method
Hello, we are in ClassA class method

4)层次继承 (4) Hierarchical Inheritance)

If more than one class is inherited from the base class is called hierarchical inheritance.

如果从基类继承多个类,则称为层次继承。

Syntax:

句法:

    class classA {
// Fields and Methods
}
class classB extends classA {
// Fields and Methods
}
class classC extends classA {
// Fields and Methods
}

Example of Hierarchical Inheritance:

层次继承的示例:

/*Java program to demonstrate the  
concept of hierarchical inheritance */
//ClassA
class ClassA {
// The ClassA class has one method
// displayClassAMessage() method to print message of ClassA Class
public void displayClassAMessage() {
System.out.println("Hello, we are in ClassA class method");
}
}
// ClassB class
class ClassB extends ClassA {
// The ClassB class adds one more method
// displayClassBMessage() method to print message of ClassB Class
public void displayClassBMessage() {
System.out.println("Hello, we are in ClassB class method");
}
}
// ClassC class
class ClassC extends ClassA {
// The ClassC class adds one more method
// displayClassCMessage() method to print message of ClassC Class
public void displayClassCMessage() {
System.out.println("Hello, we are in ClassC class method");
}
}
// Main class in this class we will create 
//object of ClassA and ClassB and ClassC class 
class Main {
public static void main(String[] args) {
// Creation of ClassA class object
ClassA ca = new ClassA();
// Calling ClassA class method by ClassA class object
ca.displayClassAMessage();
// Creation of ClassB class object
ClassB cb = new ClassB();
// Calling ClassB class method by ClassB class object
cb.displayClassBMessage();
// Calling ClassA class method by ClassB class object
cb.displayClassAMessage();
// Creation of ClassC class object
ClassC cc = new ClassC();
// Calling ClassC class method by ClassC class object
cc.displayClassCMessage();
// Calling ClassA class method by ClassC class object
cc.displayClassAMessage();
}
}

Output

输出量

D:\Programs>javac Main1.java
D:\Programs>java Main1
Hello, we are in ClassA class method
Hello, we are in ClassB class method
Hello, we are in ClassA class method
Hello, we are in ClassC class method
Hello, we are in ClassA class method

翻译自: https://www.includehelp.com/java/types-of-inheritance-in-java-with-examples.aspx

java 继承示例

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/378909.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

基于HtmlParser的网络爬虫

一、 目标 获取网页中的超链接及链接名,如从http://www.hao123.com/开始,抓取所有hao123链接到的超链接,再以获取到的链接网页为目标,获取它所链接到的网页。 二、环境及开发工具 环境:Java 工具:MyEclip…

VMware下Ubuntu无法全屏显示问题

一、运行Ubuntu的时候无法全屏显示,如图所示下载VMware Tools 二、之后将下载的文件拷贝到home文件夹下 三、解压该压缩包 由于该压缩包是.tar.gz结尾的故压缩命令:tar -zxvf VMwareTools-10.2.5-8068393.tar.gz,当然各版本有可能不一样&am…

AMQP RabbitMQ

转载:http://blog.ftofficer.com/2010/03/translation-rabbitmq-python-rabbits-and-warrens/官方介绍:http://www.rabbitmq.com/erlang-client-user-guide.html开始吧AMQP当中有四个概念非常重要:虚拟主机(virtual host&#xff…

fsync与fflush的关系和区别

read/write/fsync与fread/fwrite/fflush的关系和区别 read/write/fsync: linux底层操作; 内核调用, 涉及到进程上下文的切换,即用户态到核心态的转换,这是个比较消耗性能的操作。 fread/fwrite/fflush:…

lumanager mysql密码_LuManager单独安装mysqli

首先确定你正在使用的php版本以及php.ini的位置,LuManager自带了几个版本。如果是默认安装,应该是5.2.17。php.ini的位置应该是在/usr/local/php_fcgi/lib/php.ini要确定这些信息,可以自己编写一个 info.phpphpinfo();?>把文件存放到网站…

数据库系统数据库管理系统_数据库管理系统介绍

数据库系统数据库管理系统数据库 (Database) A database is a collection of related data. In database any user can efficiently access the data which users want to retrieve. It can be anything from a simple collection of roll numbers, names, addresses and phone…

vba将select的值直接赋给变量

strSql ""strSql strSql & " select max(number) from dbo.#DATA" & vbCrLfrss.Open strSql, cnn numb rss.Fields(0)rss.Close转载于:https://www.cnblogs.com/zigewb/archive/2013/02/06/2900645.html

set_exception_handler 自定义异常处理

刚才已经说过了set_error_handler这个函数,作用就是自定义错误处理, 那么现在就来简单的说一下set_exception_handler,看名字我们就能发现,这说的是自定义异常处理。 呵呵,我聪明吧?来,先看一下…

如何获取ubuntu源码包里面的源码进行编译

如何获取ubuntu源码包里面的源码进行编译 1、在获取源码包之前,确保在软件源配置文件 /etc/apt/sources.list中添加了deb-src项 2、使用如下命令获取xxx源码包的详细信息: sudo apt-cache showsrc xxx 这用来查询当前镜像站点中是否有该源码包。 3、源码包中通常…

python 示例_带有示例的Python字典popitem()方法

python 示例字典popitem()方法 (Dictionary popitem() Method) popitem() method is used to remove random/last inserted item from the dictionary. popitem()方法用于从字典中删除随机/最后插入的项目。 Before the Python version 3.7, it removes random item and from …

优化算法的意义,之二。

前一篇分析了求质数的两个算法,在代码执行效率和系统开销两方面进行了比较。 这在通信系统的设计和实现中,是非常重要的两点。因为需要同时面对的是巨大的用户群,和复杂的业务应用,通信系统的设计经常要面临鱼与熊掌间的选择。 用…

srs配置文件分析

配置文件中的每一项都是一个SrsConfDirective对象。 例子:vhost 1、 整个vhost 是一个SrsConfDirective对象。 1.1、名字:std::string name vhost 1.2、参数:std::vectorstd::string args第0个值 defaultVhost 1.3、子SrsConfDirective&a…

寄存器(CPU工作原理)03 - 零基础入门学习汇编语言08

第二章:寄存器(CPU工作原理)03 让编程改变世界 Change the world by program 物理地址 CPU访问内存单元时要给出内存单元的地址。所有的内存单元构成的存储空间是一个一维的线性空间。 我们将这个唯一的地址称为物理地址。 16位结构的CPU…

判别Linux是CentOs还是Ubuntu的最简单方法

在终端执行以下两条命令即可 CentOs:yum -help Ubuntu:apt-get -help

threadgroup_Java ThreadGroup toString()方法与示例

threadgroupThreadGroup类的toString()方法 (ThreadGroup Class toString() method) toString() method is available in java.lang package. toString()方法在java.lang包中可用。 toString() method is used to returns string denotation of this thread group (i.e. this m…

240多个jQuery插件

文件上传(File upload)Ajax File Upload.jQUploader.Multiple File Upload plugin. jQuery File Style.Styling an input type file.Progress Bar Plugin.表单验证(Form Validation)jQuery Validation.Auto Help.Simple jQuery form validation.jQuery XAV - form validations…

解压缩命令

.Tar.gz 解压:Tar zxvf FileName.Tar.gz 压缩:Tar zcvf FileName.Tar.gz DirName 大致总结了一下Linux下各种格式的压缩包的压缩、解压方法。但是部分方法我没有用到,也就不全,希望大家帮我补充,我将随时修改完善&…

Anaconda下安装OpenCV和Tensorflow(最简洁高效的方法)

安装Tensorflow 1,打开Anaconda Navigator 2,手动创建tensorflow环境,这个和你的python版本号一致哈(方法一第一步之后,输入python即可查看当前的版本) 3,手动搜索并下载添加 4,…

Java System类console()方法及示例

系统类console()方法 (System class console() method) console() method is available in java.lang package. console()方法在java.lang包中可用。 console() method is used to return the console object which is uniquely associated with the current JVM(Java Virtual …