我正在寻找关于最优雅和最安全的方法来解耦两个 C++ 类的建议,这些类维护指向彼此类型的指针集合。
我最近使用一个通用的多态基类实现了它,并被告知这是一个不令人满意的解决方案。我渴望学习其他可以实现这一目标的方法。
提前致谢...
我在下面添加了类定义的简化版本。我知道这个SalesTeam
类并没有从SalesPerson
这里解耦。
// Global Vectors
vector<Customer *> v_Customer;
vector<SalesPerson *> v_SalesPerson;
vector<SalesTeam *> v_SalesTeam;
class Person { // Base Class
};
class Customer: public Person {
private:
const Person *contact; // This is the SalesPerson that serves the Customer
public:
Customer(const int aBirthYear);
virtual ~Customer() {}
};
class SalesPerson: public Person {
private:
vector<Person *> v_Client; // These are the customers that the SalesPerson serves
public:
SalesPerson();
virtual ~SalesPerson(){};
};
class SalesTeam {
private:
vector<SalesPerson *> v_TeamMember; // These are the sales people in the SalesTeam
public:
SalesTeam();
};