2

代码是:

public int F1() {
    return 0;
}

public int F2() {
    F3();

    return 1;
}

当我应用格式时,它应该是这样的:

public int F1() { return 0; }

public int F2() {
    F3();

    return 1;
}

所以

  1. 如果方法中包含“一行”,则格式化后应为一行
  2. 如果方法包括“多于一行”,则格式化后应继续换行

我应该在 Java Eclipse Preferences->Formatter 中应用什么?

4

1 回答 1

0

据我所知,目前这是不可能的。对不起。

于 2013-10-05T13:08:55.277 回答