Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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++.

share|improve this question

4 Answers

up vote 7 down vote accepted

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().

share|improve this answer
1  
+1: use std::vector for dynamically sized array needs. – DeadMG Sep 1 '10 at 9:07
I would say use vector for any array. – Kugel Sep 1 '10 at 9:40

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 vector:

#include <vector>
// ...
std::vector<int> vect;
vect.push_back(1);
vect.size(); // --> 1
vect.push_back(2);
vect.size(); // --> 2
// ...
share|improve this answer
+1: This example helped me, thankyou – Greg Treleaven Sep 1 '10 at 9:17

Use a std::vector. You cannot push into a C style array e.g. int[].

share|improve this answer

Assuming you don't mean a std::vector<>, where you obviously would use std::vector<>::push_back(), but an actual array, then you need to know

  1. Is there at least one unused slot at the end of the array?
  2. Yes? then put the value at the first unused slot. No? Allocate memory for a new array that is at least the size of the previous plus any amount of additional slots that you want, copy the old values over there and add the new value.

The above of course implies that you know where in the available memory the last used slot resides.

This is what std::vector<> is for, you know.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.