组合类的调用

转载源地址:https://blog.csdn.net/forestround/article/details/52726984

#include <iostream>
#include <cmath>
using namespace std;

class Point {
private:
	int x, y;

public:
	Point(int a = 0, int b = 0)
	{
		x = a; y = b;
		cout << "Point construction: " << x << ", " << y << endl;
	}
	Point(Point &p) // copy constructor,其实数据成员是int类型,默认也是一样的 
	{
		x = p.x;
		y = p.y;
		cout << "Point copy construction: " << x << ", " << y << endl;
	}
	int getX()
	{
		return x;
	}
	int getY()
	{
		return y;
	}
};

class Line {
private:
	Point start, end;

public:
	Line(Point pstart, Point pend) :start(pstart), end(pend) // 组合类的构造函数对内前对象成员的初始化必须采用初始化列表形式
	{
		cout << "Line constructior " << endl;
	}
	float getDistance()
	{
		double x = double(end.getX() - start.getX());
		double y = double(end.getY() - start.getY());
		return (float)sqrt(x * x + y * y);
	}
};

int main()
{
	Point p1(10, 20);
	cout << "---------------" << "\n";
	Point p2(100, 200);
	cout << "---------------" << "\n";
	Line line(p1, p2);
	cout << "---------------" << "\n";
	cout << "The distance is: " << line.getDistance() << endl; 
	system("pause");
	return 0;
}

在这里插入图片描述

创建组合类的对象,构造函数的执行顺序:先调用内嵌对象的构造函数,然后按照内嵌对象成员在组合类中的定义顺序,与组合类构造函数的初始化列表顺序无关。然后执行组合类构造函数的函数体。析构函数调用顺序相反。

当创建Point类对象p1, p2时调用Point类构造函数2次;当创建组合类Line对象line时,调用了组合类Line的构造函数
(首先是参数*(上段解释中的“与组合类构造函数的初始化列表顺序无关”)*:需要实参传递给形参,需要调用Point类的拷贝构造函数2次,注意参数传递顺序是从右到左;
然后是初始化列表:再调用Point类的拷贝构造函数2次,分别完成内嵌对象成员start, end的初始化);
然后才开始执行Line类的构造函数的函数体。

猜你喜欢

转载自blog.csdn.net/qq_38233824/article/details/84937608
今日推荐