What is the difference between int* i and int** i?
|
|
Pointer to an integer value
(Ie, in the second case you will require two dereferrences to access the integer's value) |
|||
|
|
EDIT : You need to read a good book on pointers. I recommend Pointers on C by Kenneth Reek. |
||||
|
|
|
|||||||||||||||
|
|
I don't think this is specific to opencv.
Do note that, while you are declaring a pointer to an int, the actual int is not allocated. So it is valid to say |
|||
|
|
|
I deeply believe that a picture is worth a thousand words. Take the following example
So in the above,
|
|||
|
|
|
Imagine you have a few friends, one of them has to give you something (a treasure... :-) Say john has the treasure
If you ask directly john
If you cannot join john, but gill knows how to contact him,
If you cannot even join gill, but have to contact first jake who can contact gill
Etc... Pointers are only indirections. That was my last story for today before going to bed :-) |
|||
|
|
|
Let's say you're a teacher and have to give notes to one of your students.
Well ... I meant the whole class
Well ... don't forget you have several classes
And, you also teach at several institutions
etc, etc ... |
|||
|
As for the difference... There is one Provide more context, please. Or, if this is actually as specific as it can get, read your favorite C or C++ book about pointers. Such broad generic questions is not something you ask on the net. |
|||||||||||
|
|
int* i is the address of a memory location of an integer |
|||
|
|
|
Note that
is not fully interchangeable with
This can be seen in that the following will compile:
while this will not:
For the second, you have to give it a constructor list:
You also get some checking with the [] form:
compiles warning free, while:
will give the warnings: warning C4156: deletion of an array expression without using the array form of 'delete'; array form substituted warning C4154: deletion of an array expression; conversion to pointer supplied Both of these last two examples will crash the application, but the second version (using the [] declaration type) will give a warning that you're shooting yourself in the foot. (Win32 console C++ project, Visual studio 2010) |
|||
|
|
|
Textual substitution is useful here, but beware of using it blindly as it can mislead you (as in the advanced example below).
This works no matter what T is:
This works when T is itself a pointer type:
|
|||
|
|
|
int* i; // i is a pointer to integer. It can hold the address of a integer variable. int** i; // i is a pointer to pointer to integer. It can hold address of a integer pointer variable. |
|||
|
|