Object-Oriented Programming-c++_ lesson 22 upward styling

Source: Internet
Author: User

An assignment compatibility rule is a case in which an object of a derived class can be used as an object of the base class in a public-derived case.

The contract class derived is derived from the class base public, which refers to the following 3 scenarios:

(1) A derived object can be assigned to an object of the base class. For example:

Derived D;

Base b;

B=d;

(2) An object of a derived class can initialize a reference to a base class. For example:

Derived D;

base& Br=d;

(3) The address of the object of the derived class can be assigned to a pointer to the base class. For example:

Derived D;

Base *pb=&d;

A pointer or reference to a parent class is an upward shape.

Parent class: People

Subclass: Student

Students can be seen as people, but they can't be seen as students

Object-Oriented Programming-c++_ lesson 22 upward styling

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.