SFML community forums

Help => General => Topic started by: bobojoeho on March 15, 2024, 12:11:23 am

Title: How to make a list with a dynamic length?
Post by: bobojoeho on March 15, 2024, 12:11:23 am
So I want to make a list that I can change the length of during my program.

Making an array requires me to set its length whenever I create the array, and that length is permanent.

Any ways to store a list of numbers, such that I can increase the length of the list or decrease it whenever I want?
Title: Re: How to make a list with a dynamic length?
Post by: kojack on March 15, 2024, 06:02:29 am
std::vector is the class you want. It's a dynamic resizable array as part of the C++ standard.
Title: Re: How to make a list with a dynamic length?
Post by: bobojoeho on March 15, 2024, 07:17:37 pm
ok thanks

i am new to c++ so i am just learning about arrays and stuff