for 循环后的 Visual Studio 2010 缩进

发布于 2024-09-06 15:44:23 字数 202 浏览 5 评论 0原文

为什么我在 if 块之后会出现这种行为?我错过了什么吗?

for (;;)
    if (/*...*/)
    {
        // statements
    }

    // statements indented to match the if indentation instead of the for loop;

Why am I getting this behavior right after the if block? Am I missing something?

for (;;)
    if (/*...*/)
    {
        // statements
    }

    // statements indented to match the if indentation instead of the for loop;

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

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

发布评论

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

评论(2

楠木可依 2024-09-13 15:44:23

Visual Studio 2010 似乎充满了编辑器错误。压痕特别经过软管处理。

每次您键入“:”时,只需等待它开始将光标移动到行首即可。

如果您关闭文件并重新打开它,有时会解决问题……无论如何,会持续一段时间。

Visual Studio 2010 appears to be riddled with editor bugs. Indentation is particularly hosed.

Just wait until it starts moving your cursor to the beginning of the line every time you type a ':'.

If you close the file and reopen it that sometimes fixes the issue...for a little while anyway.

朮生 2024-09-13 15:44:23

保持 VS 合理缩进的唯一方法是始终使用块来包围由 forif控制的语句> while 等。在您的情况下,这意味着:

for (;;) 
{
    if (/* ... */)
    {
    // ...
    }
}
// further statements here indented to match for loop.

About the only way to keep VS doing indentation reasonably is to always use a block to enclose the statement controlled by a for, if, while, etc. In your case that would mean:

for (;;) 
{
    if (/* ... */)
    {
    // ...
    }
}
// further statements here indented to match for loop.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文