0
Collections in C++
Is it possible to have collections in C++ like collections in Java? best regards Christof
1 Antwort
+ 2
There are a few options in STL, depending on your needs. For example, you can use ordered/unorded set/multiset. Or a simple vector, like @luka stated.
http://www.cplusplus.com/reference/stl/