作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在阅读 Zed Shaw 的“艰难地学习 C”。在第 20 章中,作者创建了一个头文件,例如headerfile.h
并包含该行#ifndef _headerfile_h
。我理解 #ifndef
指令但不理解 _headerfile_h
。请解释此 _headerfile_h
或提及任何资源以查找它。
#ifndef _headerfile_h
#define _headerfile_h
…other material…
#endif /* _headerfile_h */
最佳答案
它只是一个唯一名称,仅供该 header 使用,以防止 header 包含两次时出现问题。
请注意,通常情况下,您不应创建以下划线开头的函数、变量、标记或宏名称。 C11 §7.1.3 Reserved identifiers的一部分说:
另见:
__const
) mean in C? extern
to share variables between source files? #include
in headers? .h
" files in C? 可能还有其他一些。其中一些问题有指向其他资源的进一步链接——SO 问题和外部链接。
关于c - _headerfile_h 这个名字是什么意思,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56929003/
我一直在阅读 Zed Shaw 的“艰难地学习 C”。在第 20 章中,作者创建了一个头文件,例如headerfile.h 并包含该行#ifndef _headerfile_h。我理解 #ifndef
我是一名优秀的程序员,十分优秀!