在使用 CreateInstance 重新分配之前需要释放 com_ptr_t 吗?

发布于 2024-12-02 10:25:18 字数 205 浏览 0 评论 0原文

在具有 _com_ptr_t 成员的 C++ 类中,如果在同一指针上重复使用 CreateInstance() 来获取 COM 对象的新实例而不首先执行 Release(),是否会发生内存泄漏?有据可查的是,当这些智能指针之一超出范围时,引用计数就会减少,而当封装的指针被 Detach() 时,引用计数不会减少。 MSDN 似乎没有提到重复 CreateInstance() 时引用计数的含义。

In a C++ class with _com_ptr_t members, will memory leak if CreateInstance() is repeatedly used on the same pointer to get fresh instances of COM objects, without first performing a Release()? It's well documented that ref count is decremented when one of these smart pointers goes out of scope, and that it is not when the encapsulated pointer is Detach()ed. MSDN doesn't seem to mention the implications of ref counting when repeating CreateInstance().

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

且行且努力 2024-12-09 10:25:18

由于 _com_ptr_tCreateInstance() 开头调用 Release(),因此不会发生泄漏,您可以通过阅读 _com_ptr_t 轻松验证自己实施。

No leak will occur since _com_ptr_t calls Release() at the beginning of CreateInstance() which you can easily verify yourself by reading _com_ptr_t implementation.

余生共白头 2024-12-09 10:25:18

CreateInstance() 调用
_Release() 在调用 CoCreateInstance() 之前。请看里面的实现。

CreateInstance() calls
_Release() before calling the CoCreateInstance(). Please see the implementation inside.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文