How do pointers to pointers work in C? When would you use them?
|
5
|
|||||||||||
|
|
|
A pointer to pointer is, well, a pointer to pointer. A meaningfull example of someType** is a bidimensional array: you have one array, filled with pointers to other arrays, so when you write dpointer[5][6] you access at the array that contains pointers to other arrays in his 5th position, get the pointer (let fpointer his name) and then access the 6th element of the array referenced to that array (so, fpointer[6]). |
||||||
|
|
|
it's a pointer to the pointer's address value. (that's terrible I know) basically, it lets you pass a pointer to the value of the address of another pointer, so you can modify where another pointer is pointing from a sub function, like:
|
||||
|
|
|
You may want to read this : Pointers to Pointers Hope this helps to clarify some basic doubts. |
||
|
|
|
|
A pointer to a pointer is also called a handle. One usage for it is often when an object can be moved in memory or removed. One is often responsible to lock and unlock the usage of the object so it will not be moved when accessing it. It's often used in memory restricted environment, ie the Palm OS. |
|||
|
|
|
|
How do pointers to pointers work in C? First a pointer is a variable, like any other variable, but that holds the address of a variable. A pointer to a pointer is a variable, like any other variable, but that holds the address of a variable. That variable just happens to be a pointer. When would you use them? You can use them when you need to return a pointer to some memory on the heap, but not using the return value. Example:
And you call it like this:
There are other uses too, like the main() argument of every C program has a pointer to a pointer for argv, where each element holds an array of chars that are the command line options. You must be careful though when you use pointers of pointers to point to 2 dimensional arrays, it's better to use a pointer to a 2 dimensional array instead. Why it's dangerous?
Here is an example of a pointer to a 2 dimensional array done properly:
You can't use a pointer to a 2 dimensional array though if you want to support a variable number of elements for the ROWS and COLUMNS. But when you know before hand you would use a 2 dimensional array. |
|||
|
|
|
|
You have a variable that contains an address of something. That's a pointer. Then you have another variable that contains the address of the first variable. That's a pointer to pointer. |
||
|
|
|
|
Let's assume an 8 bit computer with 8 bit addresses (and thus only 256 bytes of memory). This is part of that memory (the numbers at the top are the addresses):
What you can see here, is that at address 63 the string "hello" starts. So in this case, if this is the only occurrence of "hello" in memory then,
... defines
Now
Now As to why one uses pointers to pointers:
|
||||||||||||||||||
|
|
|
When a reference to a pointer is required. For example, when you wish to modify the value (address pointed to) of a pointer variable declared in a calling function's scope inside a called function. If you pass a single pointer in as an argument, you will be modifying local copies of the pointer, not the original pointer in the calling scope. With a pointer to a pointer, you modify the latter. |
||
|
|
|
|
When covering pointers on a programming course at university, we were given two hints as to how to begin learning about them. The first was to view Pointer Fun With Binky. The second was to think about the Haddocks' Eyes passage from Lewis Carroll's Through the Looking-Glass
|
||
|
