如何配置 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
{
}
}