Arraylist in cpp

Hi guys.
I have a curiosity to be remedied. I wonder if C + + has some library that implements an infinite array, as has the arraylist in java class, or vector class (also in java).
Thankful for the attention.

Yes, it is called std::vector in C++
http://www.cplusplus.com/reference/vector/vector/
http://en.cppreference.com/w/cpp/container/vector

(there are other containers, too, but vector is the most versatile)
Thanks, my friend
Topic archived. No new replies allowed.