c++笔记0


class Point{
int x ;
int y ;
};

 对于上面定义的类, c++编译器一般默认定义四个函数:不带参数的构造函数(默认构造函数),带一个参数为该类对象的构造函数(拷贝构造函数),赋值函数(=),析构函数。示例代码:

/*demo1.cpp*/
#include <iostream>
using namespace std;
class Point{
public:
	int x ; 
	int y ;
public:
/*	Point( const Point &a)
	{
           x = a.x ; 
		   y = a.y ;
		   cout<<"copy construct"<<endl ; 
	}
	Point():x(0),y(0)
	{}*/  //第二编译请去掉该注释语句            
	void outPut()
	{
		cout<<x<<endl<<y<<endl ;
	}
};
Point Copy( const Point &a )
{
      Point  tmp ;
	  tmp.x = a.x ; 
	  tmp.y = a.y ; 
	  return tmp ;
}
int main()
{
        Point  p1,p2,p3 ;
	p1.x  = 1 ; 
	p1.y = 2 ;
	p3 = p1 ;
	p2 = Copy(p1);
	p2.outPut();
	p3.outPut();
	return 0 ;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值