dynamic array of class
I want to make a dynamic array of class objects. Though it is dynamic I have to calcula开发者_如何学编程te some size before initiating them; what strategy should I apply?
Use the std::vector
class from the standard library. That implements a strongly-typed dynamic array. It can be found inside the header <vector>
.
精彩评论