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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

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.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

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

Dreamweaver Mac version
Visual web development tools

Dreamweaver CS6
Visual web development tools