C ++ ClassName :: GetSth(TypeName *& pSth)

时间:2013-01-24 08:58:40

标签: c++ pointers reference

  

可能重复:
  what’s the meaning of *&

  1. * &pSth是什么意思?
  2. 这是pointer还是ref
  3. 为什么/何时需要?
  4. - 代码 -

    ClassName::GetSth(TypeName* &pSth)
    {
        //some code
    }
    

2 个答案:

答案 0 :(得分:3)

表示“引用指向Typename的指针”。

答案 1 :(得分:1)

TypeName* &pSth是对TypeName指针的引用。

C中的等效语法是TypeName** pSth