C + + and OO Num Comp. Sci. Eng.-Part 5.

Source: Internet
Author: User
Class

The Class keyword provides a containment mechanism that combines the data and the methods of manipulating the data to be used as a built-in type.

A class can contain a private part that is accessible only to its members and friend classes, and the public part can be accessed anywhere in the program.

Constructors have duplicate names with classes. Destructors are used to define operations when objects are destroyed.

class pt2d { // class for 2D pointsprivate: // private membersdouble x; // x coordinatedouble y; // y coordinatepublic: // public members pt2d(double r, double s) { // constructorx = r; y =s;}void move(double, double); // move to new positionvoid move(pt2d); // move to new positionvoid draw() const; // a const memberfriend double norm(pt2d); // a friend};

C + + and OO Num Comp. Sci. Eng.-Part 5.

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.