首页 > 其他 > 详细

构造函数与重载

时间:2015-06-09 00:42:20      阅读:176      评论:0      收藏:0      [点我收藏+]
//--构造函数--------------------------------------------------------

#include <iostream.h>

class Point 
{
public:
    int x;
    int y;
    Point() //构造函数
    {
        x=0;
        y=0;
    }
    Point(int a,int b) //多个构造函数(多个构造函数自动匹配,这就叫做“函数重载”)
    {
        x=a;
        y=b;
    }
    ~Point() //# 析构函数 # 释放构造函数占用的内存
    {
        
    }
    void output()
    {
        cout<<x<<endl<<y<<endl;
    }
};

void main()
{
    Point pt(6,9);    //函数重载匹配到有参数的构造函数
    pt.output();  //程序执行到此处会跳转到析构函数处(#号处)释放构造函数占用的内存
}

 不能重载的函数形式:

//----------------------

void output();

int output(); //只有返回值不同的不能重载

//----------------------

void output(int a,int b=3); //有常量作为参数的函数不能重载

void output(int a);

 

构造函数与重载

原文:http://www.cnblogs.com/ROHALLOWAY/p/4562259.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!