在许多参数上自定义Eclipse代码格式化程序

时间:2014-11-24 22:21:43

标签: eclipse code-formatting autoformatting

从Eclipse自定义autoformatter时,您可以为多种情况提供多种标识策略选项。当涉及到具有许多参数的函数调用时,大多数人可能得到类似这样的结果:

/**
 * Arguments
 */
class Example {
    void foo() {
        Other.bar(
                100,
                nested(
                        200,
                        300,
                        400,
                        500,
                        600,
                        700,
                        800,
                        900));
    }
}

这里的其他人会发现这样的东西会更好更清晰吗?

/**
 * Arguments
 */
class Example {
    void foo() {
        Other.bar(
            100,
            nested(
                200,
                300,
                400,
                500,
                600,
                700,
                800,
                900
            )
        );
    }
}

有没有可能实现这样的结果?谢谢!

0 个答案:

没有答案