为什么 GLib 重新定义类型?
GLib 中重新定义类型背后的原因是什么?为什么他们将 char
转换为 gchar
,将 int
转换为 gint
等?
What is the reasoning behind types to be redefined in GLib? Why do they turn char
into gchar
, int
into gint
, etc.?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 GLib 文档中的基本类型。本质上,它是为了保证某些类型将以某些语义存在,无论您使用哪种 C 编译器或平台。 C 保证的类型无论如何都会被
typedef
编辑,只是为了使所有类型名称看起来统一。Check out Basic Types in the GLib documentation. Essentially, it's to guarantee that certain types will exist with certain semantics, regardless of which C compiler or platform you're using. The types that C guarantees anyway are
typedef
ed just to make all of the type names look uniform.另请参阅此答案。
本质上,这是因为 glib 的标准宽度类型,例如
guint32
早于 C99 和更高版本的标准宽度类型,例如现在存在的uint32_t
(C99 及更高版本)并且完全等效。因此,glib 的
g
前缀类型现在基本上已经过时了。使用标准化固定宽度类型,例如uint32_t
现在改为。See also this answer.
Essentially, it's because glib's standard-width types such as
guint32
predate the C99 and later standard-width types, such asuint32_t
, which now exists (as of C99 and later) and is exactly equivalent.So, glib's
g
-prefixed types are now essentially obsolete. Use the standardized fixed-width types likeuint32_t
now instead.