我正在寻找一种在 eclipse 中自动对齐多个方法调用的参数的方法。
例如
输入:
method( arg1, longarg2, anotherArg3);
method(arg1,arg2,aArg3);
method(argument1, arg2, anotherArg3);
method( argument1,longarg2,anotherArg3,extra);
输出:
method( arg1, longarg2, anotherArg3 );
method( arg1, arg2, aArg3 );
method( argument1, arg2, anotherArg3 );
method( argument1, longarg2, anotherArg3, extra);
Eclipse 命令、格式化程序设置、插件,各方面都胜出。