Eclipse does not break line when formatting code
Each time you format the code with Eclipse's own ctrl+shift+f, if the original line of code is greater than 80 columns, eclipse will automatically change to multiple lines, which is not very comfortable, a simple try, can be modified in the following ways:
1, Preferences->java->code Style->code formatter->show ..., after opening, select the "Line wrapping" tab, in the "Maximun line width "Specifies that the line is greater than the number of columns, generally around 150.
2, or in the "Line wrapping" tab, you can select "Lines wrapping Policy" can specify the constructor, method body, and so on.
However, the default encoding style recommended by Sun is a 80 column line break.
1.Java Code
Open Eclipse's Window menu, and then Preferences->java->code style->formatter->edit/show (different buttons available depending on the version)->line Wrapping->maximum line width: Change from 80 to 200.
2.Html Code
Window->preferences->myeclipse->files and editors->html->html source->line width-> default is 72, Save after 150 instead.
After the change, the previous class of more than 5,900 lines was formatted once. The discovery code is hundreds of lines short. How many lines of code can a programmer write in a day?