奇怪的 for 循环? C#

发布于 2024-10-04 16:56:07 字数 324 浏览 1 评论 0原文

可能的重复:
在 C# 中是 for(;; )安全,它到底有什么作用?

所以我最近遇到了一些我以前从未见过的东西..

        for (; ; )
        {

        }

当字段像这样留空时到底发生了什么?

Possible Duplicate:
In C# is a for(;;) safe and what does it really do?

So i recently came across something ive never seen before..

        for (; ; )
        {

        }

What is exactly happening when the feilds are left blank like that?

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

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

发布评论

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

评论(3

z祗昰~ 2024-10-11 16:56:07

这是一个无限循环。

内部某处应该有一个 break; 语句,或者可能抛出一个异常,以便控制传递到循环之外。

你也可以通过做来实现同样的事情(可能更明显)

while (true)
{
    // do stuff
}

It's an infinite loop.

Somewhere inside there should be a break; statement, or possibly an exception thrown in order for control to pass beyond the loop.

You could also achieve the same thing (probably more obviously) by doing

while (true)
{
    // do stuff
}
感情洁癖 2024-10-11 16:56:07

这是一个无限循环,几乎相当于 while(true) 循环。

break 条件不在两个分号之间,因此,它必须位于循环体中的某个位置。

This is an infinite loop, almost equivalent to a while(true) loop.

The break condition is not there in between the two semicolons, therefore, it must be there somewhere in the loop body.

秋日私语 2024-10-11 16:56:07

这是一个无限循环。

That's an infinite for loop.

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