-2

現在、私の日食は次のコード形式に従っています。

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

}

したがって、すべてのコードを選択して Ctrl +   Shift   +を押すと F 、コードが上記のスタイルでフォーマットされます。

デフォルトのコード形式をこれに設定する方法はありますか:

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

2 に答える 2

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 に答える