Today when I was reading others’ code, I saw something like void *func(void* i);, what does this void* mean here for the function name and for the variable type, respectively?
In addition, when do we need to use this kind of pointer and how to use it?
A pointer to
voidis a “generic” pointer type. Avoid *can be converted to any other pointer type without an explicit cast. You cannot dereference avoid *or do pointer arithmetic with it; you must convert it to a pointer to a complete data type first.void *is often used in places where you need to be able to work with different pointer types in the same code. One commonly cited example is the library functionqsort:baseis the address of an array,nmembis the number of elements in the array,sizeis the size of each element, andcomparis a pointer to a function that compares two elements of the array. It gets called like so:The array expressions
iArr,dArr, andlArrare implicitly converted from array types to pointer types in the function call, and each is implicitly converted from “pointer toint/double/long” to “pointer tovoid“.The comparison functions would look something like:
By accepting
void *,qsortcan work with arrays of any type.The disadvantage of using
void *is that you throw type safety out the window and into oncoming traffic. There’s nothing to protect you from using the wrong comparison routine:compareIntis expecting its arguments to be pointing toints, but is actually working withdoubles. There’s no way to catch this problem at compile time; you’ll just wind up with a missorted array.