0

如何配置 Eclipse Java 代码样式格式化程序以在与大括号相同的行上启动大括号后面的代码?

class Example
{   Example()
    {
    }
    void bar(int p)
    {   for (int i = 0; i < 10; i++)
        {    //a comment
        }
    }
}

编辑:请仔细阅读问题。我不是在问关于如何使用格式化程序的一般问题。让格式化程序执行此操作很容易:

class Example
{
    //Code starts on the line following the brace
    Example()
    {
    }
}

让它做到这一点并不容易:

class Example
{   Example() //Code starts on the same line as the brace
    {
    }
}
4

1 回答 1

0

右键单击您的项目并转到属性。然后选择 Java 代码样式 > 格式化程序。单击新建以创建新的格式化程序

于 2014-04-24T15:01:25.947 回答