How to Create Function Parameters in abstract classes

Source: Internet
Author: User
An abstract class cannot be used as a function parameter object, but the pointer and reference method of the abstract class can be used. For example, the following function is valid.
Void fun (cabstract * P );
Void fun (cabstract & );
Invalid example: void fun (cabstract OBJ );
The pointer and reference method are valid because the pointer and reference method can point to an object of the derived type of an abstract class. These derived classes may not be abstract classes.
When the parameters are combined, the pointer and reference of the base class are used to point to the object of the derived class.
All methods of the base class can be called normally.

How to Create Function Parameters in abstract classes

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.