I'm reading some code in the Ogre3D implementation, and I can't understand what does a void*-typed variable could mean. What does a pointer to void means in C++?
|
feedback
|
|
A pointer to void,
You can't dereference, increment or decrement that pointer, because you don't know what type you point to. The idea is that | |||||||||||||
feedback
|
|
It's just a generic pointer, used to pass data when you don't know the type. You have to cast it to the correct type in order to use it. | |||
|
feedback
|
|
It's a raw pointer to a spot in memory. It doesn't allow any pointer arithmetic like char * or int *. Here's some examples of usage | |||
|
feedback
|
|
It's a pointer to anything -- just a chunk of memory that you can play with -- might be an object, might be a char. You have to cast to do anything useful with it. | |||
|
feedback
|
|
A void pointer cannot point to a class member in C++. | |||||
feedback
|
|
Building off my prior posting... ATTENTION: All memory addresses here are fictional. I'm just making them up to illustrate a point. Given:
We now have:
(I'm not going to get into big-endian vs little-endian byte ordering here.) If we have:
We now have another memory location somewhere else, say:
We can use p[1] [or *(p + 1)] to refer to *(int*)(0xffff0004) [=11] as sizeof(int)=4 and 0xffff0000+sizeof(int) = 0xffff0004. If we have:
We now have another memory location somewhere else, say:
However, void doesn't have any associated sizeof() information. We can't increment or decrement the pointer. We can't dereference to access the data stored in 0xffff0000. We can only utilize the value as a raw memory address. If we want to use the data stored in (void*)0xffff0000, we first need to cast it to an appropriate type. That said, (void *) is still quite useful as a means of passing addresses to arbitrary data structures around. For instance, memset(). It doesn't matter whether I'm zero'ing out a struct tm or a struct sockaddr. We just need a pointer to the struct and its size. (This should go without saying, but... Beware using memset to zero out a class instance and, in doing so, overwriting the virtual pointer table.) | |||
|
feedback
|