I am a java coder and not familar with the c++ language. But right now,i read the following code:
void method(A* a,A*& b);
A *a;
A *b;
method(a,b);
And my question is: what's the meaning of "*&"?Does it means that it represent the value of b itself? thx