Day5_ sub-class and inheritance

Source: Internet
Author: User

1. Subclass and Parent class

        Inheritance is a mechanism for creating new classes from existing classes. With inheritance, you can define a generic class of common attributes, and then define subclasses with special attributes based on the generic class, inheriting the properties and behaviors of the generic class, and adding its own new properties and behaviors as needed.

A class derived from inheritance is called a subclass, and the inherited class is called the parent class (Super Class).

Declaring a subclass

In the declaration of a class, define a subclass of a class by using the keyword extends, in the following format:

CALSS Child class Name extends parent class name {

...

}

object is the ancestor class of all classes. Each class (except the object class) has and has only one parent class, and a class can have more than one or 0 subclasses.

Day5_ sub-class and inheritance

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.