limit.h 中的条件编译语句

发布于 2024-08-22 23:20:17 字数 241 浏览 7 评论 0原文

我无法理解文件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 技术交流群。

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

发布评论

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

评论(2

牵你手 2024-08-29 23:20:17

它检查您的程序是否由 GCC 以外的其他编译器或某些非常旧的 GCC 版本编译。

It checks if your program is compiled by some other compiler than GCC, or some very old GCC version.

兔小萌 2024-08-29 23:20:17

它检查您是否没有使用 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.

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