有没有办法在Eclipse中格式化if-else
语句,其中每行都有多个条件,同时按 Ctrl + Shift + F 大骨节病>?
我试图在Preferences -> Java -> Code Style -> Formatter
中捣乱,但无法找到使其正常工作的正确选项。
我想要实现的格式如下。
if(condition1 == true
&& condition2 == true
&& condition3 == true
&& condition4 == true
&& condition5 == true) {
return 0;
}
有什么建议吗?