Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我偶然发现了这段代码,并想知道为什么 C# 编译器没有发出警告或错误。严格来说,我想我正在尝试执行任何实际上有效的操作?(对于空行)
这是一句空话。它作为循环体很有用:
while(!Condition()) ;
在循环体完全嵌入循环头的 for 循环中更常见。
让我们遍历链表的最后一个元素:
Node current = head; for (; current.Next != null; current = current.Next) ; return current;
它看起来有点讨厌,通常我更喜欢写一个更长但更易读的循环。C++ 人倾向于在循环头中塞进很多东西。
我相信它也可以在代码生成场景中派上用场。