理解特定的 For 循环

发布于 2024-12-02 03:27:03 字数 1432 浏览 0 评论 0原文

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

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

发布评论

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

评论(2

各空 2024-12-09 03:27:03

它等同于:

bool b = true; // 1

while(b) // 2
{
    b = true;
    //Other stuff.
    // 3
}

for 循环的 3 个分号分隔的部分始终对应于我在 while 循环中注释的位置。

不过,不要认为这是节省几行的聪明方法。任何写出像你看到的代码的人都应该被抓起来并枪毙。

It's the same as:

bool b = true; // 1

while(b) // 2
{
    b = true;
    //Other stuff.
    // 3
}

The 3 semicolon-separated parts of a for loop always correspond to the places I commented in the while loop.

Don't think of it as a clever way to save a couple lines, though. Anyone who writes code like you saw should be taken out and shot.

飘落散花 2024-12-09 03:27:03
do
{
  b = true;
  // Other stuff
} while(b);
do
{
  b = true;
  // Other stuff
} while(b);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文