我在使用 Eclipse 格式化程序时遇到问题,我似乎无法弄清楚。
如果我有一行代码的注释超过 80 个字符,例如:
Something something = new Something(somethingElse) // some comments here about the code.
然后我第一次运行格式化程序时,它会正确设置它,例如:
Something something = new Something(somethingElse) // some comments here
// about the code.
但是,如果我稍后再次运行格式化程序,它将更改为:
Something something = new Something(somethingElse) // some comments here
// about the code.
我觉得这里应该有一些明显的东西我错过了,但我已经查看了我能找到的所有格式化程序设置,但还没有找到防止这种行为的方法。有没有人对此有任何见解?
谢谢