gpt4 book ai didi

ios - CFRelease 与 CGPathRelease

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:52:33 32 4
gpt4 key购买 nike

以下是来自 Omni frameworks 的代码片段:

CGMutablePathRef path = CGPathCreateMutable();
CGPathAddRect(path, NULL/*transform*/, rect);
self->_path = CGPathCreateCopy(path);
CFRelease(path);

为什么这里用的是CFRelease而不是CGPathRelease?它们是否相同?如果是,为什么后者存在?

最佳答案

来自documentation for CGPathRelease :

This function is equivalent to CFRelease, except that it does not cause an error if the path parameter is NULL.

除了不会因 NULL 值而失败外,您还可以获得一点编译时类型安全性,因为参数被键入为 CGPathRef 而不是 CFTypeRef(相当于 void *)。

关于ios - CFRelease 与 CGPathRelease,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5307790/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com