search
HomeJavajavaTutorialRegain the basics of Java (8): Summary of inheritance and polypeptides

重拾java基础(八):继承、多肽总结

一、继承

1、在java编程中会遇到两个或者多个类中存在多个代码重复,这时我们就需要在这     
两个或多个类中寻找他们的共同特点,然后寻找一个大的类别来包括,他们的共      
同属性和方法,这样就出现了继承。 
2、我们大类别叫做“超类”或者“基类”不过通俗叫法我们叫做“父类”,小类别叫    做“子类”. 
3、小类别继承大类别内非私有的成员。      
注意:a、 私有的属性可以通过set/get方法来实现对其的使用,但这不属于继承。            
b、构造函数无法继承,因为构造函数的函数名要与父类的函数名保持                
一致, 如果继承下来语法不符。            
c、个人觉得 父类的私有函数虽然无法继承,不过可以利用父类中的                
非私有函数进行调用。 
4、java中的继承是单继承  不能写成  class Son extends Father , GrandFather    
但是可以是多层继承    
例如:class Father extends GrangFather                                 
class Son extends Father 
5、继承要满足is-a关系     老师是人   不能 人是老师 也不能   dog is a person 
6、继承要使用  extends 关键字

二、子类究竟可以从父类中继承什么?

1、子类在父类中继承的是  父类中非私有的成员。 2、不可继承方法:        构造方法不能继承        私有方法不能继承 3、可继承方法        非私有的方法 4、非私有方法可以继承      私有属性不可继承  但可以用set/get方法来使用 5、私有属性子类没有继承权但有使用权 6、子类可以有自己的特有属性和方法

三、创建子类对象时的内存分配图 

Regain the basics of Java (8): Summary of inheritance and polypeptides

四、继承关系中的方法

1、父类非私有的方法 除构造方法 子类都能继承

2、子类如果不想用父类中的方法也可以进行方法重写。

3、方法重写   

A、方法重写要保证方法名、 参数类型、顺序、个数完全一样  

 B、方法重写要保证 返回值类型 与其父类的类型相同或者是其子类。   

C、方法重写要保证 修饰符 与其父类型相同或者比父类的权限要大。   方法重写最好与其父类保持完全一致,不会出错

五、super关键字

1、super 关键字    表示子类堆中存在父类空间

 2、super 关键字 只能用来调用父类的非私有成员    

A、非私有属性       super.属性名    

B、非私有函数       super.函数名    

C、构造方法      

可以在子类中调用父类的构造方法                      

super()无参构造方法                      

super(实参)有参构造方法 

3、在子类构造方法中对父类的私有属性进行赋值    

 A、set方法    

 B、super 调用父类的构造方法(有参)

六、一切类的祖先:Object

一切类的最顶端的父类      所有的类都自动继承Object类

七、多态

 1、多肽可以保证程序的拓展性和可维护性  2、多肽可以减少代码的重复性  3、要遵循is-a语句

八、向上转型

  1、父类名 对象名=new 子类名();   

2、作用:           主动方方法的参数要使用被动方父类的类型,实参传给形参的过程。  

 3、实现多肽的步骤      

 A、被动方必须有继承关系       

B、子类需要重写父类中的功能方法      

 C、主动方的方法的参数类型要设置为被动放的父型类型。   

4、例如    Father  f=new Son();//多肽的声明               

f.eat();//这里执行的是子类中的eat函数

Regain the basics of Java (8): Summary of inheritance and polypeptides

注释:printer为父类,BlackPrinter为子类    在主动方的函数中定义一个父类然后在测试类中传一个子类对象。注意:如果子类对象中还传参,上述子类要用super调用父类的有参构造方法。      因为构造函数不继承。

九、向下转型

1、向上转型不能调用子类函数的特有方法,因此用向下转型 

2、如图所示  

父类名   对象名=new 子类名();             

子类名   变量名=(子类名)对象名;               

变量名.特有方法名();       

涉及到强制类型转换。

3、解决向上转型的弊端。

十、多态的细节

    1、对于非私有的属性,如果父类和子类都有同名的一个属性,再向上转型的时候,          调用的是父类中的属性。        编译和运行看左边(父类)。     

2. For non-private methods, if both the parent class and the subclass have a function (method rewriting) with the same name, during upward transformation, the method of the subclass is called. When compiling, look at the left (parent class). When running, look at the right (subclass). Note: This explains that in polypeptides, subclasses must override or inherit the methods of the parent class; unique methods. The parent class does not exist and cannot be compiled, so use downward typing. Convert! ! ! !

The above is the content of regaining the basics of java (8): inheritance and polypeptide summary. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

Java数据结构之AVL树详解Java数据结构之AVL树详解Jun 01, 2022 am 11:39 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function