如何在eclipse中使用更多参数格式化方法?

时间:2014-04-18 12:07:43

标签: java eclipse

我知道CTRL + SHIFT + F的格式化方法,但它提供了3-4个参数。我想在一行中有一个参数

敌人,例如:

method(a,b,c,d,e,f)

我想要下面的结果

method(a,
       b,
       c,
       d,
       e,
       f)

1 个答案:

答案 0 :(得分:5)

这是Eclipse格式化程序中的一个选项。

  1. 转到Window > Preferences
  2. 然后在左侧的树中,转到Java > Code Style > Formatter
  3. 转到" Line Wrapping"标签
  4. 在树中,选择Method Declaration > ParametersFunction Calls > Arguments
  5. In" Line Wrapping Policy"组合框,选择:
  6.   

    将所有元素,每个元素换行换行。