Constructors and overloads

Source: Internet
Author: User

//----------------------------------------------------------of the constructor function#include<iostream.h>classPoint { Public:    intx; inty; Point ()//constructor Function{x=0; Y=0; } Point (intAintb//multiple constructors (automatic matching of multiple constructors, which is called "function overloading"){x=A; Y=b; }    ~point ()//# destructor # releases the memory occupied by the constructor    {            }    voidoutput () {cout<<x<<endl<<y<<Endl; }};voidMain () {Point pt (6,9);//function overloading matches a constructor that has parametersPt.output ();//The program executes here jumps to the destructor (#号处) to release the memory occupied by the constructor}

A function form that cannot be overloaded:

// ---------------------- void output (); int // cannot overload only if the return value is different // ---------------------- void output (int A,int b=3// functions that have constants as arguments cannot be overloaded  void output (int a);

Constructors and overloads

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.