The inheritance of classes in Java is achieved by extending other classes to form new classes. The original class is called the parent class (super class) or base class, and the new class is called the original class. A subclass or derived class of a class. In a subclass, it not only contains the attributes and methods of the parent class, but also adds new attributes and methods, so that the basic characteristics of the parent class can be shared by all objects of the subclass.
Recommended: java video tutorial
Note: Class inheritance does not change the access rights of class members. That is to say, if the members of the parent class are public, protected, or default, its subclasses still have these corresponding characteristics.
The definition format of class inheritance is as follows:
class class_name extends extend_class { //类的主体 }
Among them, class_name represents the name of the subclass (derived class); extend_class represents the name of the parent class (base class); the extends keyword directly follows After the subclass name, it is followed by the name of the parent class to which the class inherits. For example:
public class Student extends Person{}
For more java knowledge, please pay attention to the java basic tutorial column.
The above is the detailed content of What is class inheritance in java. 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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Dreamweaver CS6
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

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

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
