C + + OOP

Source: Internet
Author: User

One of the main advantages of the C + + language is that, unlike its predecessor, language C, it is designed to support object-oriented programming (OOP).

This is a fairly simple concept: you will manipulate different objects, each of which is an instance of a particular class.

A class is a set of methods (functions bound to this class) and attributes (or data members, conceptually very close to the C struct).

The C + + structure behaves almost like the C + + class, but each of its components is public by default.

Using an example of a class would be clearer, let's assume we'll start designing an object that represents a vehicle:

Next is the constructor, which is a mandatory method that indicates how the class is instantiated.

It is called whenever an instance of the class is declared or created (using the new operator). Constructors can have parameters.

And then the destructor.

In most cases, both are declared in the public section.

C + + OOP

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.