ivar 包含什么?

发布于 2024-12-26 05:09:09 字数 173 浏览 2 评论 0 原文

在头文件中,ivar 结构具有三个成员:

名称、类型和偏移量。

我猜 name 是用来存储变量的名称的。

偏移量用于存储距结构开头的字节距离。

请告诉我这两个说法是否正确?谁能解释一下 type 的用途是什么? 是数据类型还是范围决定了它是公共的、私有的还是受保护的。

in the header file, an ivar structure has three members:-

name, type and offset.

I guess name is for storing the name of the variable.

Offset is for storing distance in bytes from the start of the structure.

Please tell me if I am right about these two ? can anyone explain me What is type for ?
Is it the datatype or the scope telling whether it is public ,private or protected.

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

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

发布评论

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

评论(1

少女的英雄梦 2025-01-02 05:09:09

它是一个包含实例变量类型编码的 C 字符串。请参阅 类型编码

不过,您不应该直接访问 Ivar 字段,因为 Ivar 是一个不透明类型。最好使用 ivar_getTypeEncoding() 来实现这一点。

It's a C string containing the instance variable's type encoding. See Type Encodings in your local copy of Objective-C Runtime Programming Guide.

You should not access Ivar fields directly, though, because Ivar is an opaque type. It's better to use ivar_getTypeEncoding() for that.

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