C++ Objective-C 中的成员变量++ ARC下

发布于 2024-11-30 14:46:15 字数 299 浏览 0 评论 0原文

我正在尝试在 Objective-C++ 类中使用 C++ 成员。像这样的事情:

class CPP;
@interface ObjCPP{

    CPP* cppMember;

}
@end

没有 ARC,我可以使用子类化 init 和 dealloc 方法来管理 cppMember。但在 ARC 下我不能这样做,因为当子类化 dealloc 时我不能写这个:

[super dealloc];

对此有什么想法吗?

谢谢!

I'm trying to use a C++ member in an Objective-C++ class. Something like this:

class CPP;
@interface ObjCPP{

    CPP* cppMember;

}
@end

Without ARC, I'm able to manager cppMember with subclassing init and dealloc method. But under ARC I can't do this, because when subclassing dealloc I can't write this:

[super dealloc];

Any idea for this?

Thanks!

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

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

发布评论

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

评论(1

是你 2024-12-07 14:46:15

在 ARC 下,可以(而且必须)在 -dealloc 实现中省略 [super dealloc] 。另请参阅此问题

Under ARC, it's fine to (and you must) just leave out the [super dealloc] in a -dealloc implementation. See also this question.

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