标签: c++ arrays class oop dynamic
我是一个新手,我只是想知道如何动态地创建一个类数组,并在同样在类中的不同函数中使用该数组。 例如。
class customer { protected: string name; int ph_no; public: add(){}; show(){}; };
答案 0 :(得分:0)
使用std::vector:
std::vector
std::vector<customer> v;