gpt4 book ai didi

c - 为什么在类型定义结构时使用不同的标识符?

转载 作者:太空狗 更新时间:2023-10-29 16:10:03 25 4
gpt4 key购买 nike

考虑这段代码:

typedef struct _Node Node;

struct _Node {
struct _Node * node;
};

或者这个:

typedef struct _Node {
struct _Node * node;
} Node;

有什么理由不将它们重写为

typedef struct Node Node;

struct Node {
Node * node;
};

typedef struct Node {
Node * node;
} Node;

据我所知,它们是等价的。这些下划线前缀的原因是什么?我还看到了其他变体,其中它不是下划线,而是第一次出现时是大写字母,第二次出现时是小写字母,或者其他使它们不同的东西。一个例子在这里:

typedef struct Books {
char title[50];
char author[50];
char subject[100];
int book_id;
} Book;

本例来自tutorialspoint而且我知道它们通常不应被视为可靠来源。但是这样做有什么好的理由吗?

最佳答案

人们使用像 struct _Node 这样的名称来故意忽略标准中设置的规则(或者,更常见的是,因为他们不知道标准中设置的规则)。粗略地说,该标准表示以下划线开头的名称主要是为“实现”保留的,意思是编译器和系统库。参见 C11 §7.1.3 Reserved identifiers详情:

  • All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use.
  • All identifiers that begin with an underscore are always reserved for use as identifiers with file scope in both the ordinary and tag name spaces.

另请注意 §6.2.1 Scopes of identifiers — 强调:

An identifier can denote an object; a function; a tag or a member of a structure, union, or enumeration; a typedef name; a label name; a macro name; or a macro parameter. The same identifier can denote different entities at different points in the program. A member of an enumeration is called an enumeration constant. Macro names and macro parameters are not considered further here, because prior to the semantic phase of program translation any occurrences of macro names in the source file are replaced by the preprocessing token sequences that constitute their macro definitions.

还要注意 POSIX 也保留了 _t 后缀 — 参见 The Compilation Environment .

也就是说,思考过程似乎是“这个名字不应该使用太多;在它前面加上下划线以阻止它的使用”。而且“我已经看到它在系统头文件中使用;我将复制那种样式”,没有意识到系统头文件是以这种方式编码的,以避免踩踏为普通程序员保留的 namespace 并使用为实现保留的 namespace .

您的重写是明智的;这是我通常做的。


解决扩展问题:

不是每个人都知道结构标记与普通标识符位于不同的命名空间中,因此他们不知道 typedef struct Book Book; 是完全安全和明确的(第一个 Book 在标签 namespace 中,必须以 struct 开头;第二个 Book 在普通标识符 namespace 中,必须struct 开头。

此外,人们查看系统 header ,看看他们做了什么,并认为他们应该复制那里的样式,而没有意识到实现有不同的规则强加于它关于它可以和不能用于名称的内容。

请注意 Linux kernel coding standards不鼓励对结构类型使用 typedef;他们要求你在任何地方都使用 struct WhatEver。该规则既有优点也有缺点——自洽性可能比您使用的约定更重要。这意味着对现有项目“顺其自然”,但在您自己的新项目中采用哪种方式并不重要,只要您保持一致即可。

您还可以在圣经中找到使用结构标记的替代名称和相应的 typedef 名称的先例 - 意思是 Kernighan 和 Ritchie 的“C 编程语言”。 (有趣的是,他们的示例在 1978 年第一版和 1988 年第二版之间发生了很大变化。)

第二版:

typedef struct tnode *Treeptr;

typedef struct tnode {

Treeptr left;
Treeptr right;
} Treenode;

第一版:

typedef struct tnode {

struct tnode *left;
struct tnode *right;
} TREENODE, *TREEPTR;

请注意,现代风格倾向于避免对指针使用 typedef。参见 Is it a good idea to typedef pointers? .

关于c - 为什么在类型定义结构时使用不同的标识符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54753213/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com