Under what circumstances might you want to use multiple indirection (that is, a chain of pointers as in **foo) in C++?
|
|
Most common usage as @aku pointed out is to allow a change to a pointer parameter to be visible after the function returns.
This will print
But there are several other useful usages as in the following example to iterate an array of strings and print them to the standard output.
|
||
|
|
|
|
IMO most common usage is to pass reference to pointer variable
You can create multidimensional jagged array using double pointers:
|
||
|
|
|
|
If you pass a pointer in as output parameter, you might want to pass it as And from the algorithms-and-data-structures department, you can use that double indirection to update pointers, which can be faster than for instance swapping actual objects. |
|||
|
|
|
|
A simple example would be using |
||
|
|
|
|
Usually when you pass a pointer to a function as a return value:
where the function returns a success/failure error code and fills in the object parameter with a pointer to the new object:
This is used a lot in COM programming in Win32. This is more of a C thing to do, in C++ you can often wrap this type of system into a class to make the code more readable. Skizz |
||
|
|
|
|
Carl: Your example should be:
(You have two stars.) :-) |
||
|
|
|
One common scenario is where you need to pass a null pointer to a function, and have it initialized within that function, and used outside the function. Without multplie indirection, the calling function would never have access to the initialized object. Consider the following function:
Any function that calls 'initialize(foo*)' will not have access to the initialized instance of Foo, beacuse the pointer that's passed to this function is a copy. (The pointer is just an integer after all, and integers are passed by value.) However, if the function was defined like this:
...and it was called like this...
...then the caller would have access to the initialized instance, via 'my_foo' - because it's the address of the pointer that was passed to 'initialize'. Of course, in my simplified example, the 'initialize' function could simply return the newly created instance via the return keyword, but that does not always suit - maybe the function needs to return something else. |
||
|
|
|
In C, the idiom is absolutely required. Consider the problem in which you want a function to add a string (pure C, so a char *) to an array of pointers to char *. The function prototype requires three levels of indirection:
We call it as follows:
In C++ we have the option of using references instead, which would yield a different signature. But we still need the two levels of indirection you asked about in your original question:
|
||
|
|
