在IntelliJ-Idea中配置编码样式

时间:2017-02-28 15:44:00

标签: intellij-idea

在IntelliJ IDEA中,大括号的位置如下:

/**
 * 
 * Created by MaximusDecimus on 2/23/2017.
 */
public class StackOverflowMWE {
    public static void main(String[] args) {
        System.out.println("Tomorrow is Friday! Yippee Kay Yay Mother Sugar!");
    }
}

我比较习惯这个:

/**
 *
 * Created by MaximusDecimus on 2/23/2017.
 */
public class StackOverflowMWE
{
    public static void main(String[] args)
    {
        System.out.println("Tomorrow is Friday! Yippee Kay Yay Mother Sugar!");
    }
}

有没有办法可以在IntelliJ IDEA中选择这个。或者我必须手动完成吗? PyCharm基于第二种风格,如上所示,Jetbrains也是IntelliJ的同一人。

1 个答案:

答案 0 :(得分:1)

我使用的是Android Studio,但是在这里设置此设置:

偏好设置 - >编辑 - >代码风格 - > Java - >大括号放置 - >选择"下一行"