使用新对象后添加新对象(&Q;)

2022-06-11 00:00:00 object pointers c++ new-operator

调用new后,如何向指针添加更多对象?(我上课需要它) 这就是我的意思:

int *a;
a = new int;
a = new int;

非常感谢!


解决方案

您可能应该使用vector或list。

相关文章