有没有办法阻止 Eclipse 破坏我的源文件中的注释?
我的主要问题是阻止它对它们进行自动换行。我已经设法将 eclipse 配置为不对任何代码进行自动换行,但它似乎仍然对注释执行此操作。
我输入的代码如下:
public int myVariable = 100; // this variable is a very interesting variable and it does lots of stuff
像这样结束:
public int myVariable = 100; // this variable
// is a very
// interesting
// variable and
// it does lots
// of stuff