我正在尝试配置 Eclipse Checkstyle,但我找不到两件事的选项:
在方法中,我希望每个声明都有一个新行:
public int calc (int x,
int y,
int z) {
}
并不是:
public int calc (int x, int y, int z) {
}
声明应该像这样包装
private var a;
private int [] b = null;
private ArrayList<Integer> c = new ArrayList<Integer> ();
并不是:
private var a;
private int [] b = null;
private ArrayList<Integer> c = new ArrayList<Integer> ();
我已经尝试过“MultipleVariableDeclarations”和 OneStatementPerLine,但它们仅在方法内部有效,不适用于方法的参数。
我希望有一个人可以帮助我。