Detailed introduction to JAVA basic inheritance (inheritance)
Inheritance (inheritance) is a very important concept in Java OOP. This article mainly introduces inheritance (inheritance), the basics of JAVA. Friends who need it can refer to
Inheritance (inheritance) is a very important concept in Java OOP. Inheritance is based on reusing methods and fields of existing classes, and you can also add new methods and fields. Java uses the extends keyword to indicate the inheritance relationship (is-a). The inherited class is called the super class (superclass), the base class (base class), the parent class (parent class), and the new class is called the subclass (subclass) , derived class (derived class) or child class (child class).
1.class:The basic unit in a programming language. Encapsulates data and functions together.
2. The base class contains the characteristics and behaviors shared by all its derived classes.
3. You can create a base class to represent the core concepts of certain objects in the system, and derive other types from the base class to represent the various ways in which this core can be implemented.
4. The private member derived class of the base class is inaccessible.
5. The exported class copies the interface of the parent class, so all messages that can be sent to the base class object can also be sent to the exported class object. The exported class has the same type as the base class.
6. Two methods can make the difference between the base class and the derived class:
1) Add new methods directly to the derived class;
2) Change the existing base class Behavior of class methods - overriding base class methods.
7.is-a and is-like-a:
1) is-a: The exported class and the base class have exactly the same interface, that is, the exported class and the base class are exactly the same type. For example: a circle is a geometric figure. To determine whether it is inheritance, you must determine whether is-a can be used to describe the relationship between classes and make it meaningful.
2) is-like-a: New interface elements are added to the exported type, that is, the interface is extended, and the base class cannot access the newly added methods. At this point the exported class is like a base class.
The above is the detailed content of Detailed introduction to JAVA basic inheritance (inheritance). 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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics





Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

Guide to TimeStamp to Date in Java. Here we also discuss the introduction and how to convert timestamp to date in java along with examples.

Capsules are three-dimensional geometric figures, composed of a cylinder and a hemisphere at both ends. The volume of the capsule can be calculated by adding the volume of the cylinder and the volume of the hemisphere at both ends. This tutorial will discuss how to calculate the volume of a given capsule in Java using different methods. Capsule volume formula The formula for capsule volume is as follows: Capsule volume = Cylindrical volume Volume Two hemisphere volume in, r: The radius of the hemisphere. h: The height of the cylinder (excluding the hemisphere). Example 1 enter Radius = 5 units Height = 10 units Output Volume = 1570.8 cubic units explain Calculate volume using formula: Volume = π × r2 × h (4

In PHPOOP, self:: refers to the current class, parent:: refers to the parent class, static:: is used for late static binding. 1.self:: is used for static method and constant calls, but does not support late static binding. 2.parent:: is used for subclasses to call parent class methods, and private methods cannot be accessed. 3.static:: supports late static binding, suitable for inheritance and polymorphism, but may affect the readability of the code.
