-2

目前我的eclipse遵循这种代码格式:

public class TempClass {
    public static void main(String[] args) {
    }

}

因此,当我选择所有代码并按 Ctrl +   Shift   + F 时,它会将代码格式化为上述样式。

有什么办法可以将我的默认代码格式设置为:

public class TempClass 
{
    public static void main(String[] args) 
    {
    }
}
4

2 回答 2

2

按照这个:

窗口 -> 首选项 -> Java -> 代码样式 -> 格式化程序 -> [编辑...] -> 大括号

在那里你可以配置它!

于 2013-11-05T05:22:01.990 回答
1

Right click on project->java -> code Style->Formatter->Configure Workspace Settings..(link on top right)>Select Active Profile->Edit->Braces(Tab)

Look for Brace Position:

You can change the brace position, for eg) constructor declaration to next line

You can create a new profile as well if you want(instead of using the Eclipse Built-in]

enter image description here

Change the sample code.

and Apply changes.

Version:Helios Service Release 2

于 2013-11-05T05:23:55.133 回答