代码是:
public int F1() {
return 0;
}
public int F2() {
F3();
return 1;
}
当我应用格式时,它应该是这样的:
public int F1() { return 0; }
public int F2() {
F3();
return 1;
}
所以
- 如果方法中包含“一行”,则格式化后应为一行
- 如果方法包括“多于一行”,则格式化后应继续换行
我应该在 Java Eclipse Preferences->Formatter 中应用什么?