I have a class field which is a std::vector. I know how many elements I want this vector to contain: N. How do I initialize the vector with N elements?
feedback
|
|
You can use it to construct the It's straightforward to initialize a
| |||||||
feedback
|
| |||
|
feedback
|
|
All the constructors that allow you to specify a size also invoke the element's constructor. If efficiency is paramount, you can use the | |||
|
feedback
|