Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
C++
Vector Table
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
Reply to thread
Message
[QUOTE="adbarnet, post: 1521897"] You can instantiate a std::vector and have it create space for the number of elements you specify: typedef std::vector<Type> vecTypes; vecTypes myTypeVector(12); would create space for 12 'Types', and call the int default constructor for each one. You can also use resize on constructed vectors to make them the size you want. [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
C++
Vector Table
Top