What is C++ version of realloc(), to allocate the new buffer and copy the contents from the old one?

后端 未结 4 1327
北恋
北恋 2020-12-06 10:04

In C we used malloc(), free(), but in C++ youare using new, delete, but in C we also have realloc, which will alloc the new block and

4条回答
  •  长情又很酷
    2020-12-06 10:26

    Let's see what Bjarne Stroustrup thinks!

    Why doesn't C++ have an equivalent to realloc()?

    If you want to, you can of course use realloc(). However, realloc() is only guaranteed to work on arrays allocated by malloc() (and similar functions) containing objects without user-defined copy constructors. Also, please remember that contrary to naive expectations, realloc() occasionally does copy its argument array.

    In C++, a better way of dealing with reallocation is to use a standard library container, such as vector, and let it grow naturally.

提交回复
热议问题