【发布时间】:2018-05-05 07:59:28
【问题描述】:
如何设置 eclipse 格式化程序,将方法体格式化为:
// I want to have a new line on each method property:
public void test(
double a,
double b,
String c,
Object f
) {
a = 4;
b= 3;
c = "hello";
f = null;
}
【问题讨论】: