I understand the use of void pointer for malloc implementation.
void* malloc ( size_t size );
Can anyone suggest other reasons or provide some scenarios where it is useful in practice.
Thanks
|
|
I understand the use of void pointer for malloc implementation.
Can anyone suggest other reasons or provide some scenarios where it is useful in practice. Thanks |
|||
|
|
|
|
One good scenario of use
Here for example you will pass in initialization function pointers to other functions which will be capable to copy you datatype to your list and free them afterwards. So by using And I think void* remained in C++ only because on backward compatibility, since in C++ you have more safe and sophisticated way's to achieve same result like templates, functors and etc...As well you don't need to use malloc while programming C++, so regarding C++ I don't have any specific useful examples. |
||||||
|
|
|
Void pointers should be used any time the contents of a block of data is not important. For example when copying data the contents of a memory area is copied but the format of the data is not important. Using void pointers for functions that operate on blocks of memory without needing to understand the contents it clarifies the design to users so that they know the function does not care for any data format. Often functions a coded to take a char * to handle blocks of memory when when the function is actually content agnostic. |
||
|
|
|
|
If you are interfacing with C code and need to pass through a C++ object, but a C library will only take a generic pointer, then when you retrieve the pointer you need to re-cast it to the proper type. Void pointers probably shouldn't be used very often, but they can help when you're trying to use a library function that works with arbitrary pointers, and doesn't really care what data is represented by that memory. |
||
|
|
|
|
A GREAT way to learn all about void * and other C topics is to watch the first half of the fantastic Stanford "Programming Paradigms" on iTunes-U. It really explains void * (C generics) and pointers in general fantastically! It definately helped me learn C better... One of the biggest uses is to use void * if you want to be able to accept different types of data in a function. (heres an example: http://142.132.30.225/programming/node87.html) Here's a further example of what you can use them for:
If you don't want to watch the free stanford classes, i'd recommend googling void pointer and reading all the material there. |
||||
|
|
|
It is commonly used in numerical code, for example a C root solver function might look like that:
|
||
|
|
|
Void pointers are useful when you write code that needs to run on multiple operating systems and needs to be fairly agnostic of underlying framework APIs. For example, OS X, Windows and Linux all have the basic concept of a window object, but they're all very different. So I have common code that passes them around as void*'s and then platform specific implementations that cast the void* to the native type (HWND, etc). But, yeah, as others have said in this thread, this sort of thing is certainly to be avoided except where necessary. |
||
|
|
|
|
Look at sqlite3_exec(). You start an SQL query and want to process the results in some way (store them into a container). You call the sqlite3_exec() and pass a callback pointer and a void* pointer to whatever object you want (container included). When sqlite3_exec() runs it calls the callback for each retrieved row and passed that void* pointer into it so the callback can cast the pointer and do whatever you intended. The important thing is that sqlite3_exec() doesn't care what the callback does and what pointer you pass. void* is exactly for such pointers. |
||
|
|
|
|
Another example of such C "generics", implemented with void *, is a standard qsort function:
You can sort an array of any type: int, long, double, char * or some struct pointers... |
||
|
|
|
|
Next to interfacing with C, I find myself only using void pointers when I need to debug / trace some code and like to know the address of a certain pointer.
Will print something like
And, in my opinion, nicely documents what I'm trying to do (know the pointer address, not anything about the instance) |
||
|
|
|
|
int (*f) (void); f =(void*) getprocaddress(dll,"myfunction"); to make the compiler happy |
||
|
|
|
void * is really a C-ism, and allows C to do some things that it could not reasonably do otherwise. char * cannot portably be used for anything, as different platforms can make different types of pointers - a char * isn't necessarily handled (or even the same size as) a void *. So when the type of data isn't known in C (or is polymorphic or otherwise dynamic), then void * allows you to generate the correct underlying pointer type - one that can point to anything correctly. In C++ void* generally should never come up except in the context of interfacing with legacy C code in one form or another. |
||
|
|