Why would one use realloc() function to resize an dynamically allocated array rather than using free() function before calling the malloc() function again (i.e. pros and cons, advantages vs. disadvantages, etc.)? It's for C programming, but I can't find the proper tag for it. Thanks in advance.
|
|
The advantage is that realloc will preserve the contents of the memory. With free + malloc you'd need to reset the data in the array. |
|||||||||||||||||||
|
|
Well, realloc may change the size of the block in place, or allocate a new one and copy as much as will fit. In contrast, malloc and free together can only allocate a new one, and you have to do your own copying. To be frank, realloc doesn't get as much use these days because it doesn't work well with C++. As a result, there's been a tendency for memory managers not to optimize for it. |
|||
|
|
|
"rather than using free() function before calling the malloc() function again" If you free the existing array, you've lost all of its contents, so you cannot "grow" the array in the usual sense. |
|||||
|
|
I had a program that was doing a bunch of free() and malloc() calls to make a dynamic array, and I thought I'd optimize by reusing the existing array when possible. Benchmarks showed that realloc() on average is slower than just calling free() and malloc(). I guess it makes sense, since sometimes it would grow, and maybe require copy. |
|||
|
|