How would I dynamically add a value (push) to an array? I could do this in AS3, but I can't find a function for it in C++.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
if it's a statically defined array, like "int array[10];", you can't, its size is fixed. If you use a container such as std::vector, you'd use std::vector::push_back(). |
|||
|
It is not possible to 'push' in a statically allocated classic C-style array and it would not be a good idea to implement your own 'method' to dynamically reallocate an array, this has been done for you in the STL, you can use
|
|||
|
|
|
Assuming you don't mean a
The above of course implies that you know where in the available memory the last used slot resides. This is what |
|||
|
|