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 中的外观?
目前它生成类似的代码
int a = something;
但我真的很喜欢这样做
int a=something
那就是:没有所有额外的空间。这也适用于函数,在 , 之前有一个额外的空间
我真的更喜欢 f(int a,int b); 而不是 f(int a, int b);
您始终可以在 Java --> Code-Style --> Formatter 下的首选项中更改代码的格式化方式。修改现有样式或创建自己的样式。 还有一个空格选项卡。只需取消选中这些before/after comma选项。 已经编写的代码可以通过按 自动格式化ctrl + shift + f。(或cmd + shift + f在 Mac 上)。 方法示例: 不带空格的赋值:
before/after comma
ctrl + shift + f
cmd + shift + f