gpt4 book ai didi

java - 将参数与Eclipse中多个方法调用上的列对齐

转载 作者:行者123 更新时间:2023-12-03 20:19:41 27 4
gpt4 key购买 nike

我正在寻找一种在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命令,格式化程序设置,插件,各方面均胜出。

最佳答案

使用Eclipse标准工具是不可能的。

也就是说,这也是没有必要的。如果您多次调用同一个方法,并且想要以这种方式对齐参数,则表明代码风格不好,因为您的代码中有很多重复的代码。因此,请考虑如何重构代码以避免这些重复的方法调用。例如。将参数放在集合中,然后遍历集合。

关于java - 将参数与Eclipse中多个方法调用上的列对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10485572/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com