search
HomeJavaJavagetting StartedIntroduction to inherited features and keywords

Introduction to inherited features and keywords

Aug 11, 2020 pm 04:28 PM
Keywordscharacteristicinherit

Introduction to inherited features and keywords

Inherited features:

(Recommended tutorial: java introductory tutorial)

  • Subclass Possess non-private properties and methods of the parent class.

  • Subclasses can have their own properties and methods, that is, subclasses can extend parent classes.

  • Subclasses can implement the methods of the parent class in their own way.

  • Java's inheritance is single inheritance, but it can be multiple inheritance. Single inheritance means that a subclass can only inherit one parent class. Multiple inheritance means, for example, class A inherits class B, and class B Inherit class C, so according to the relationship, class C is the parent class of class B, and class B is the parent class of class A. This is a feature that distinguishes Java inheritance from C inheritance.

  • Improves the coupling between classes (the disadvantage of inheritance is that high coupling will cause the closer the connection between codes and the worse the code independence).

Keywords:

Inheritance can be achieved using the two keywords extends and implements, and all classes inherit from java.lang .Object, when a class does not inherit the two keywords, it inherits the object ancestor class by default (this class is in the java.lang package, so there is no need to import).

extends keyword

In Java, class inheritance is single inheritance, that is to say, a subclass can only have one parent class, so extends can only inherit one class.

Example:

public class Animal { 
    private String name;   
    private int id; 
    public Animal(String myName, String myid) { 
        //初始化属性值
    } 
    public void eat() {  
        //吃东西方法的具体实现  
    } 
    public void sleep() { 
        //睡觉方法的具体实现  
        }
    } 
    public class Penguin  extends  Animal{ 

}

(Video tutorial recommendation: java course)

implements keyword

Use the implements keyword in disguise Java has the feature of multiple inheritance. When a class inherits an interface, it can inherit multiple interfaces at the same time (the interfaces are separated by commas).

public interface A {
    public void eat();    
    public void sleep();
}
public interface B {
    public void show();
}
public class C implements A,B {
}

The above is the detailed content of Introduction to inherited features and keywords. For more information, please follow other related articles on the PHP Chinese website!

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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!