devxlogo

When memory re-allocation is needed, prefer vector over C mem-functions

When memory re-allocation is needed, prefer vector over C mem-functions

If you’re still using the almost deprecated malloc(), free() and realloc() just because you need a dynamic memory container which expands and shrinks upon request, you should seriously consider using standard vetcor<> instead. Vector has some advantages over the C function mentioned above: it’s generic, and hence, supports any type of data (primitives, pointers and class objects. Mind that the C functions do not support objects); it’s underlying implementation is optimized for the current platform, and as a result – you get the best performance; and finally, it supports other STL algorithms such as sort(), reverse() and merge().

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist