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?
|
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++?
Is there something like this in c++ that you can do to an array?
| ||||
|
feedback
|
|
You need a vector, do something like this:
See http://cplusplus.com/reference/stl/vector/ for more information. | ||||
feedback
|
|
For list Use std::list::push_back If you are looking for a array equivalent of C++, You should use std::vector | |||
|
feedback
|
|
If you use | |||
|
feedback
|
|
You should use vector:
| |||
|
feedback
|
|
Lists have the push_back method.
It pushes myElement onto the end of myList. Same as Python's list.append. | |||
|
feedback
|
myList=[]before the loop. Otherwise you're clearing it every iteration and will end up withmyList=[9]– Michael Anderson Jul 21 '11 at 4:59