标签: c++ pointers reference
可能重复: what’s the meaning of *&
* &pSth
pointer
ref
- 代码 -
ClassName::GetSth(TypeName* &pSth) { //some code }
答案 0 :(得分:3)
表示“引用指向Typename的指针”。
答案 1 :(得分:1)
TypeName* &pSth是对TypeName指针的引用。
TypeName* &pSth
TypeName
C中的等效语法是TypeName** pSth
TypeName** pSth