从重整我的意见停止的Eclipse(Stop Eclipse from mangling my co

2019-08-20 07:17发布

有没有办法从重整在我的源文件中的注释停止日食?

我的主要问题是从字停止它包装他们。 我已经成功地配置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

Answer 1:

转到“窗口”菜单 - >首选项
选择的编辑器,你想从左边的列表中。(例如,Java)
那么就应该有一个名为“代码样式”款,并根据该“格式化”。

然后,你需要创建一个新的格式的配置文件。 (内置的模板不能编辑)在配置文件配置的最后一个标签是注释格式选项



Answer 2:

还有就是你可以用它来抑制特定块注释的格式另一种解决方案。 使用/ * - (注意连字符)在块注释的开始,如果你格式化文件的其余部分的格式将不会受到影响。

/*-
 * Here is a block comment with some very special
 * formatting that I want indent(1) to ignore.
 *
 *    one
 *        two
 *            three
 */

来源: http://www.oracle.com/technetwork/java/javase/documentation/codeconventions-141999.html#680



Answer 3:

  1. 转到首选项 - >爪哇 - >代码样式 - >格式化
  2. 有编辑配置文件,然后切换到所谓的最后一个选项卡“注释”
  3. 取消选中“启用行注释的格式”


Answer 4:

窗口 - >首选项 - > Java的>代码风格 - >格式化。 创建新格式。 点击编辑,然后从中挑选标签评论选中启用行注释格式和启用块注释格式



文章来源: Stop Eclipse from mangling my comments