Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个新课程。这个类需要一个指向接口的指针。我从另一个班级得到这个指针。
我的会员:CComPtr memberPointerABC;
但是我得到了另一个类的指针作为 CONST。const CComPtr& GetABCPointer();
如何将提供的 const Pointer 设置为我的成员指针?
正常分配不起作用:memberPointerABC=GetABCPointer()