limit.h 中的条件编译语句
我无法理解文件limits.h 中的以下语句。这个语句有什么用处以及它的作用是什么?
/* If we are not using GNU CC we have to define all the symbols ourself.
Otherwise use gcc's definitions (see below). */
#if !defined __GNUC__ || __GNUC__ < 2
I am not able to understand the following statement from the file limits.h. What is the use of this statement and what does it accomplishes?
/* If we are not using GNU CC we have to define all the symbols ourself.
Otherwise use gcc's definitions (see below). */
#if !defined __GNUC__ || __GNUC__ < 2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它检查您的程序是否由 GCC 以外的其他编译器或某些非常旧的 GCC 版本编译。
It checks if your program is compiled by some other compiler than GCC, or some very old GCC version.
它检查您是否没有使用 Gcc 编译器版本 2 或 Gcc 某些其他版本。
使用这个预处理器宏,我们可以得到一些可移植的代码。
It checks whether you are not using a Gcc compiler Version 2 or Gcc some other versions.
using this pre-processor macro we can some portable codes.