当从 Eclipse 定制自动格式化程序时,您有几个选项可用于多种情况下的标识策略。当涉及到带有许多参数的函数调用时,你们中的大多数人可能会得到这样的结果:
/**
* Arguments
*/
class Example {
void foo() {
Other.bar(
100,
nested(
200,
300,
400,
500,
600,
700,
800,
900));
}
}
这里的其他人会发现这样的东西看起来更好更清晰吗?
/**
* Arguments
*/
class Example {
void foo() {
Other.bar(
100,
nested(
200,
300,
400,
500,
600,
700,
800,
900
)
);
}
}
有没有可能达到这样的结果?谢谢!