Possible Duplicate:
Uses for multiple levels of pointer dereferences?
I was reading another post and this led me to this question. What the heck would something like this mean? Also how deep do people go with a pointer to a pointer to a pointer to a pointer.... I understand Pointer to Pointer but why else you would go more after that? how deep have you gone in using ****?
Foo(SomePtr*** hello);
You could refer to a 3 dimensional array of ints as int *** intArray;
It is rare in C++ certainly.
In C it may well show up where:
This would be valid C but in C++:
vector<T*>&
(or vector<shared_ptr<T> >&
not T***If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With