I'm learning c++ coming from a background in python.

I'm wondering is there a way to append items to a list in c++?

myList = []
for i in range(10):
    myList.append(i)

Is there something like this in c++ that you can do to an array?

link|improve this question

80% accept rate
1  
Do you mean a vector, a list, or an array? – GWW Jul 21 '11 at 4:33
You probably want the myList=[] before the loop. Otherwise you're clearing it every iteration and will end up with myList=[9] – Michael Anderson Jul 21 '11 at 4:59
feedback

5 Answers

up vote 4 down vote accepted

You need a vector, do something like this:

#include <vector>

void funct() {
    std::vector<int> myList;
    for(int i = 0; i < 10; i++)
        myList.push_back(10);
}

See http://cplusplus.com/reference/stl/vector/ for more information.

link|improve this answer
Having to remember how to do this in C++ has made me realize how spoiled I've become with python. Anyway, what's nice about vector is how you can still use brackets to access items: myList[9] == 9. – Manny D Jul 21 '11 at 4:41
feedback

For list Use std::list::push_back

If you are looking for a array equivalent of C++, You should use std::vector
vector also has a std::vector::push_back method

link|improve this answer
feedback

If you use std::vector, there's a push_back method that does the same thing.

link|improve this answer
feedback

You should use vector:

vector<int> v;
for(int i = 0; i < 10; i++)
    v.push_back(i);
link|improve this answer
feedback

Lists have the push_back method.

myList.push_back(myElement);

It pushes myElement onto the end of myList. Same as Python's list.append.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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