如何防止eclipse在Java中包装多行注释/*...*/?

时间:2014-05-16 19:28:15

标签: java eclipse comments

当使用/ * ... * /?

时,如何使eclipse不使用Java包装多行注释

例如,Eclipse将采用这个:

/*
// Old code, don't use
for( int i = 0; i < myarray.length(); i++){
        myarray[i].haveFun();
}
*/

把它变成这个:

/*
// Old code, don't use for( int i = 0; i <  
myarray.length(); i++){  myarray[i].haveFun();
}
*/

3 个答案:

答案 0 :(得分:2)

Eclipse formatter - &gt; “关/开标签” - &gt;启用。 然后使用注释,例如:

// @formatter:off
...
// @formatter:on

答案 1 :(得分:1)

转到Preferences > Java > Code Style > Formatter,然后在有效个人资料中选择Edit...

切换到Comments标签,并为Maximum line width for comments

输入一个较大的值

答案 2 :(得分:0)

http://www.wikihow.com/Change-the-Default-Format-Settings-in-Eclipse

这篇文章解释了如何做到你想要的更多。