(iphone) 循环引用是 objectc 中的问题吗?

发布于 2024-10-11 16:36:58 字数 165 浏览 3 评论 0原文

in class A,
i have B* b;
@property (assign) B* b;

and in class B
i have A* a;
@property (assign) A* a;

这是 objectc 中的问题吗?

谢谢

in class A,
i have B* b;
@property (assign) B* b;

and in class B
i have A* a;
@property (assign) A* a;

is this a problem in objectc?

Thank you

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

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

发布评论

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

评论(1

撑一把青伞 2024-10-18 16:36:58

没问题。

您的对象彼此之间将具有“弱引用”,因此不存在内存管理问题。

您只需确保不访问已删除的内存即可。以A类为例:

- (void)dealloc
{
    [b setA: nil];

    [super dealloc];
}

No problem with that.

Your objects will have 'weak references' to each other, so there is no memory management issue there.

You just have to make sure you don't access deleted memory. For instance in class A:

- (void)dealloc
{
    [b setA: nil];

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