Objective-C 混淆命名 ivars id

发布于 11-19 11:29 字数 135 浏览 1 评论 0原文

因此,在创建自己的类时,通常会使用 id ivar 作为唯一标识符。但由于 Objective-C 中存在 id 类型,当我将 ivar 声明为 int id 时,这会给编译器带来混乱;

那么你如何声明你的 ivar 与持有 id 相关呢?

So when creating an own class it's quite common to have an id ivar that usually acts as a unique identifier. But since in Objective-C there exists the id type this creates confusion for the compiler when I declare my ivar as int id;

So how do you declare your ivar pertaining to hold ids?

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

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

发布评论

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

评论(1

你丑哭了我2024-11-26 11:29:39

只需重命名 ivar:

int identifier;
int uniqueIdentifier;
int ident;

这样的例子还在继续......

Just rename the ivar:

int identifier;
int uniqueIdentifier;
int ident;

And the list goes on...

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