C/C++: How to use the do-while(0); construct without compiler warnings like C4127?(C/C++: 如何使用 do-while(0);构造没有像 C4127 这样的编译器警告?)
问题描述
我经常在我的#defines 中使用 do-while(0) 构造,原因描述为 在这个答案中.此外,我正在尝试使用编译器的尽可能高的警告级别来捕捉更多潜在问题,并使我的代码更加健壮和跨平台.所以我通常将 -Wall
与 gcc 和 /Wall
与 MSVC 一起使用.
I'm often use do-while(0) construct in my #defines, for the reasons described in this answer. Also I'm trying to use as high as possible warning level from compiler to catch more potential problem and make my code more robust and cross-platform. So I'm typically using -Wall
with gcc and /Wall
with MSVC.
不幸的是,MSVC 抱怨 do-while(0) 构造:
Unfortunately MSVC complain about do-while(0) construct:
foo.c(36) : warning C4127: conditional expression is constant
我应该怎么处理这个警告?
What should I do about this warning?
只是对所有文件全局禁用它?对我来说这似乎不是一个好主意.
Just disable it globally for all files? It does not seems to be good idea for me.
推荐答案
总结:在这种特殊情况下,这个警告 (C4127) 是一个微妙的编译器错误.随意禁用它.
Summary: This warning (C4127) in this particular case is a subtle compiler bug. Feel free to disable it.
深入:
它旨在捕捉逻辑表达式在非显而易见的情况下评估为常量的情况(例如,if(a==a && a!=a)
,并且不知何故,它把 while(true)
和其他有用的构造变成了无效的.
It was meant to catch situations when logical expression evaluates to a constant in non-obvious situations (such as, if(a==a && a!=a)
, and somehow, it turned while(true)
and other useful constructs into invalid.
如果您想打开此警告,Microsoft 建议使用 for(;;)
进行无限循环,并且没有适合您的情况的解决方案.这是我公司的开发约定允许禁用的极少数 4 级警告之一.
Microsoft recommends using for(;;)
for infinite loop if you want to have this warning on, and there is no solution for your case. This is one of very few Level-4 warnings my company's development conventions allow to disable.
这篇关于C/C++: 如何使用 do-while(0);构造没有像 C4127 这样的编译器警告?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C/C++: 如何使用 do-while(0);构造没有像 C4127 这样的编译器警告?
基础教程推荐
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 从 std::cin 读取密码 2021-01-01