我仍然使用Eclipse的换行功能来格式化我的java代码。我不希望Eclipse自动连接换行,所以我选中了“从不加入已经包裹的行”,但是当我格式化我的代码时,它仍然会加入包裹的行。
示例:
return ((this.isVertical == aLine.isVertical) &&
(Math.abs(this.a - aLine.a) <= EPSILON) &&
(Math.abs(this.b - aLine.b) <= EPSILON));
格式化代码:
return ((this.isVertical == aLine.isVertical) &&
(Math.abs(this.a - aLine.a) <= EPSILON) && (Math.abs(this.b - aLine.b) <= EPSILON));
请告诉我如何解决它。谢谢!
答案 0 :(得分:3)
在工作区 - &gt;偏好设置 - Java-&gt;代码样式 - &gt;格式化程序,编辑配置文件和线环绕选项卡,然后选择表达式。那里有很多选择。