What does it mean when a object has 2 asterisks at the beginning?
**variable
|
|
It is pointer to pointer. For more details you can check : Pointer to pointer EDIT It can be good for example for dynamically allocating multidimensional arrays : Like :
|
|||||||||
|
|
In a declaration, it means it's a pointer to a pointer:
When using it, it deferences it twice:
|
|||||||
|
|
Pointer to a pointer when declaring the variable. Double pointer de-reference when used outside the declaration. |
|||
|
|
|
You can use cdecl to explain C-types. There's an online interface here: http://cdecl.org/. Enter "int **x" into the text field and check the result. |
|||
|
|
|
It is a pointer to a pointer. You can use this if you want to point to an |
|||
|
|
|
**variable is double dereference. If variable is an address of an address, the resulting expression will be the lvalue at the address stored in *variable. It can mean different things if it's a part of declaration: type **variable would mean, on the other hand, a pointer to a pointer, that is, a variable that can hold address of another variable, which is also a pointer, but this time to a variable of type 'type' |
|||
|
|
|
It means that the variable is dereferenced twice. Assume you have a pointer to a pointer to char like this: char** variable = ...; If you want to access the value this pointer is pointing to, you have to dereference it twice: **variable |
|||
|
|
|
Pointer to another pointer |
|||
|
|
its a pointer to pointer,. as in if *x means that it will contain an address of some variable than if i say m=&x than m is shown as int **m |
|||
|
|