Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
调整 Eclipse 格式化程序以很好地格式化双括号初始化是否可行?
谢谢。
这不是实际答案,但由于我无法在评论中向您显示格式化代码,因此我正在使用它。
无格式代码:
new ArrayList<String>() { { add("RJ"); add("MJ");}};
格式化代码[ECLIPSE 格式化程序]
new ArrayList<String>() { { add("RJ"); add("MJ"); } };
我不知何故觉得它的格式很好。你问别的吗?