MS VS 2008 和 C99

发布于 2024-08-29 08:44:25 字数 299 浏览 3 评论 0原文

我饶有兴趣地阅读了“C99 支持程度如何?”这篇文章。其中的评论之一指出 Microsoft 不支持 C99。但是注释符号 // 适用于 VS 2008,而该符号在 C99 中。我有两个问题:

  1. VS 2008 在多大程度上支持 C99?

  2. 在同一代码中混合 C89 和 C99 语法可以吗?因此,如果我用 C89 编写代码,然后添加注释 //。这意味着我有混合编码。那么在这种情况下编译器会做什么呢?首先使用 c89 检查我的代码,然后使用 C99 检查我的代码是否接受我使用 // 进行注释?

I read with interest the post "How universally is C99 supported ?". One of the comments therein points that Microsoft doesn't support C99. But the comment symbol // works with VS 2008 and this symbol is in C99. I have two questions:

  1. To what extent VS 2008 support C99?

  2. Is it ok in the same code to mix C89 and C99 syntax together? So if I write my code in C89 and then place a comment //. This means that I have mixed-coding. So what does the compiler do in such a case? Check my code first with c89 and then with C99 to accept that I use // for commenting?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

蓝戈者 2024-09-05 08:44:25

MSVC 在 C 模式下支持很少的 C99。它所做的几件事(例如“//”注释)实际上是他们添加到来自 C++ 的 C90 模式的扩展,而 C99 中也可能恰好存在这种扩展。编译 C 代码时,MSVC 将“//”注释视为 C90 的扩展,而不是将 C90 代码与 C99 代码混合在一起。

通过将 C 文件编译为 C++,您将获得“更好”的 C99 支持 - 通过这种方式,您将获得可以散布在 for 语句中的语句和变量声明的声明,这些声明的作用域为 <例如,code>for 循环。

Microsoft 似乎对向 MSVC 添加 C99 支持的兴趣为零 - 即使他们将 C99 的内容添加到 C++ 编译器模式(例如在 VS2010 中添加的 stdint.h),因为正在添加一些额外的 C99 内容到 C++0x 中的 C++。

MSVC supports very little of C99 in C mode. The few things that it does (like '//' comments) are really extensions they've added to C90 mode that come from C++, which may happen to also be in C99. When compiling C code, MSVC treats '//' comments as an extension to C90, not that you're intermixing C90 code with C99 code.

You'll get 'better' C99 support by compiling your C files as C++ - in that way you'll get declarations that can be interspersed with statements and variable declarations in for statements that are scoped to the for loop, for example.

Microsoft seems to have zero interest in adding C99 support to MSVC - even as they add things from C99 to the C++ compiler mode (like stdint.h being added in VS2010) since some additional C99 things are being added to C++ in C++0x.

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