#include
using namespace std;
#include
class Point
{public:
Point(){x=0;y=0;}
void set();
//private:
double x;
double y;
};
void Point::set()
{
cout>x ;
cout>y;
}class Jx
{
public:
private:
Point a;
Point b; //我就是想在JX类中引用point类中的点坐标X,Y
Point c;
};
没有继承关系的类想用私有的数据可以写方法
例如
在point类中
double GetX()
{
return x;
}
然后在jx中调用Getx方法就可以得到x的值了