do while(false) pattern(做 while(false) 模式)
问题描述
可能重复:
为什么有时会有C/C++ 宏中的 do/while 和 if/else 语句毫无意义?
为什么下面的宏中需要do while(false)
?
Why is the do while(false)
necessary in the macros below?
#define LOG(message, ...)
do {
Lock<MutualExclusion> lock (logMutex);
.... a lot of code ...
} while (false)
我认为它没有任何功能用途.我是否忽略了什么?
I dont think it serves any functional purpose. Am I overlooking something?
推荐答案
它将一个块变成一个语句.如果您只使用一个块(即包含在 {}
中的代码)可能会发生奇怪的事情,例如
It turns a block into a single statement. If you just use a block (i.e. code enclosed in {}
) strange things can happen, for example
#define STUFF()
{ do_something(); do_something_else(); }
if (cond)
STUFF();
else
//...
额外的分号会破坏语法.do {} while(false)
是一个单独的语句.
the extra semi-colon breaks the syntax. The do {} while(false)
instead is a single statement.
您可以找到有关此和其他宏技巧的更多信息这里.
You can find more about this and other macro tricks here.
这篇关于做 while(false) 模式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:做 while(false) 模式
基础教程推荐
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07