CoreFoundation 所有权遵循 CreateRule

发布于 2024-11-02 10:30:18 字数 139 浏览 0 评论 0原文

“所有权遵循 CreateRule” 是什么意思?是指核心基础文档内部吗?

返回值 一个新字典,如果创建对象时出现问题,则为 NULL。所有权遵循创建 规则。

谢谢。

What does "Ownership follows the CreateRule." means inside the core foundation documentation?.

Return Value
A new dictionary, or NULL if there was a problem creating the object. Ownership follows the Create
Rule.

Thanks.

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

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

发布评论

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

评论(1

不甘平庸 2024-11-09 10:30:18

如果您使用名称中带有 CreateCopy 的函数创建对象,则需要使用 CFRelease 释放它。如果您通过其他方式获取对象,则不必这样做。

与 Objective-c 中的便捷方法相同。

引自《核心基础设计理念》

Get、Copy 和 Create 之间有一个重要区别,即返回值的函数名称。如果使用 Get 函数,则无法确定返回对象的生命周期。为了确保此类对象的持久性,您可以保留它(使用 CFRetain 函数),或者在某些情况下复制它。如果您使用 Copy 或 Create 函数,则您负责释放对象(使用 CFRelease 函数)。有关更多详细信息,请参阅 Core Foundation 内存管理编程指南。

If you create an object, using a function with either Create or Copy in its name, you need to release it using CFRelease. If you get an object by another way, you don't have to.

Same as convenience methods in Objective-c.

Quote from "Core Foundation Design Concepts"

There is an important distinction between Get, and Copy and Create, in names of functions that return values. If you use a Get function, you cannot be certain of the returned object’s life span. To ensure the persistence of such an object you can retain it (using the CFRetain function) or, in some cases, copy it. If you use a Copy or Create function, you are responsible for releasing the object (using the CFRelease function). For more details, see Memory Management Programming Guide for Core Foundation.

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