C++复合类的简单案例

问题:C++复合类的简单案例

本程序通过VC++ 6.0编译与测试,程序中Circle为复合类,包含Point类,具体代码如下:

#include 
using namespace std;
//圆心点类:Point
class Point
{
public:
	Point();
	Point(float _x,float _y);
	void print();
private:
	float x;
	float y;
};

Point::Point()
{}

Point::Point(float _x,float _y)
{
	x=_x;
	y=_y;
}

void Point::print()
{
	cout<<"("<

程序运行结果:

C++复合类的简单案例_第1张图片

你可能感兴趣的:(C++复合类的简单案例)