eg:
GetContext(const wchar_t* pKeyName, void** pValue, int& nLen);
其中pValue是在GetContext中获取的值,并在该函数内部分配内存,调用GetContext的在调用地方调用ReleaseData释放该内存。
该函数内部做如下使用:
step1)WCHAR *pContent = new WCHAR[MAX_PATH];
step2)对pContent值赋值
step3)*pValue = pContent;
(由此可见,*pValue保存的是新分配内存的地址。)
Q:为啥形参不是void *pValue而是void **pValue,实际用的时候也还是使用*pValue,只要传参时候传pValue,而不是&pValue就好了呀。
A:因为只传void*就是值传递,GetContext改变的是副本,传void**,其相当于void*&,保证的是引用传递,改变的是形参。