C++:如何定义一个类,使这个类的对象属性是另一个类的对象?

2025-01-08 12:53:51
推荐回答(1个)
回答1:

class Point
{
...
};

class Circle
{
    Point center;
    ...
};