c++ - what's the meaning of *& -


i java coder , not familar c++ language. right now,i read following code:

void method(a* a,a*& b);  *a; *b; method(a,b); 

and question is: what's meaning of "*&"?does means represent value of b itself? thx

b reference pointer of a.

so if method sets b, b in scope of call changed.


Comments

Popular posts from this blog

How do you change vbulletin's home page to the forums instead of the default (CMS or Activity Stream)? -

c++ - Troubles when compiling phash program -