没有变量声明的大括号
为什么有时 C 代码会用花括号括起来,而没有在其中声明变量? 例如(来自 FreeRTOS 源代码,文件“tasks.c”): <代码>
portENTER_CRITICAL();
{
xTicks = xTickCount;
}
portEXIT_CRITICAL();
Why sometimes C code gets wrapped with curly braces without declaring a variable in them?
e.g. (from FreeRTOS source code, file 'tasks.c'):
portENTER_CRITICAL(); { xTicks = xTickCount; } portEXIT_CRITICAL();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这只是一个内部范围。好处是代码可以显示您在这种情况下的意图。例如,这个范围是关键部分。
This is just an inner scope. The benefit is that code shows your intent in that case. e.g. This scope is the critical section.
不需要像这样使用花括号,但它有助于可读性。
我想这是作者对风格的选择:)
There is no need to use curly braces like this, but it helps readability.
It's a choice of style by the author, I suppose :)