Suppose I have the following code:
void* my_alloc (size_t size)
{
return new char [size];
}
void my_free (void* ptr)
{
delete [] ptr;
}
Is this safe? Or must ptr be cast to char* prior to deletion?
|
Suppose I have the following code:
Is this safe? Or must |
|||||||||||||||||||||
|
|
It depends on "safe." It will usually work because information is stored along with the pointer about the allocation itself, so the deallocator can return it to the right place. In this sense it is "safe" as long as your allocator uses internal boundary tags. (Many do.) However, as mentioned above, destructing a void pointer will not call destructors, which can be a problem. In that sense, it is not "safe." There is no good reason to do what you are doing. If you want to write your own deallocation functions, you can use function templates to generate functions with the correct type. A good reason to do that is to generate pool allocators, which can be extremely efficient for specific types. |
|||
|
|
|
Deleting via a void pointer is undefined by the C++ Standard - see section 5.3.5/3:
And its footnote:
. |
|||||||||||
|
|
It's not a good idea and not something you would do in C++. You are losing your type info for no reason. Your destructor won't be called on the objects in your array that you are deleting when you call it for non primitive types. You should instead override new/delete. Deleting the void* will probably free your memory correctly by chance, but it's wrong because the results are undefined. If for some reason unknown to me you need to store your pointer in a void* then free it, you should use malloc and free. |
|||||||||||||||
|
|
Deleting a void pointer is dangerous because destructors will not be called on the value it actually points to. This can result in memory / resource leaks in your application. |
|||
|
|
|
Because char has no special destructor logic. THIS won't work.
The d'ctor won't get called. |
|||
|
|
|
If you want to use void*, why don't you use just malloc/free? new/delete is more than just memory managing. Basically, new/delete calls a constructor/destructor and there are more things going on. If you just use built-in types (like char*) and delete them through void*, it would work but still it's not recommended. The bottom line is use malloc/free if you want to use void*. Otherwise, you can use template functions for your convenience.
|
|||||
|
|
A lot of people have already commented saying that no, it's not safe to delete a void pointer. I agree with that, but I also wanted to add that if you're working with void pointers in order to allocate contiguous arrays or something similar, that you can do this with |
||||
|
|
|
If you really must do this, why not cut out the middle man (the
Note that unlike |
|||
|
|
|
There is hardly a reason to do this. First of all, if you don't know the type of the data, and all you know is that it's If you do know the type of the data (ie it has a ctor/dtor), but for some reason you ended up with a |
|||
|
|
|
If just want a buffer, just use malloc/free. If you must use new/delete, consider a trivial wrapper class:
|
|||
|
|
|
What I remember from plain old C is that "void" is a funny way to say "int" (which is a funny way to ask for a machine word). If, and only if, delete can detect a "non object" pointer, it might "decay" to a call to free(), but what's the point? Is my_alloc() supposed to be an emulation of calloc(), which 0 fills the memory returned? Is my_free supposed to guard for null pointers??? Try this instead:
|
|||||||||||||||||
|