归还的 BSTR 归谁所有?

发布于 2024-07-19 07:32:56 字数 333 浏览 5 评论 0原文

假设 COM 接口中的方法返回 BSTR 值。 我认为我必须释放它是正确的吗?

代码示例位于 http://msdn.microsoft.com/en-us/library/aa365382(VS. 85).aspx 不这样做。

谁错了?

Suppose a method from a COM interface returns BSTR value. Am I right in my opinion that I must free it?

The code example at http://msdn.microsoft.com/en-us/library/aa365382(VS.85).aspx does not do that.

Who's wrong?

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

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

发布评论

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

评论(2

帅哥哥的热头脑 2024-07-26 07:32:56

MSDN 示例是错误的。 调用者释放出和输入/输出 bstr。 如果它是输入/输出,则必须传入 null 或有效的 bstr。 如果只是出来,则不必初始化。

从msdn的com分配规则来看,这并不是很清楚,但是客户端存根会根据输出值分配内存,因此从调用者的角度来看,服务器也是如此。 除了调用者之外还有谁可以释放它?

The MSDN sample is wrong. The caller frees out and in/out bstrs. If it's in/out you have to pass in null or a valid bstr. If it's out only, it doesn't have to be initialized.

It's not super clear from msdn's com allocation rules, but the client stub allocates the memory on out values so from the caller's point of view the server did. Who else can free it but the caller?

沒落の蓅哖 2024-07-26 07:32:56

托尼是正确的,但我想扩展他的答案。 这种情况不仅仅限于 BSTR。 调用者负责释放通过 out 或 in/out 参数返回的任何内存。

Tony is correct but I wanted to expand on his answer. The situation is not just limited to a BSTR. The caller is responsible for freeing any memory that is returned via out or in/out parameters.

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