IDEA中快速添加main和System方法

在eclipse中输入main或syso就能快速生成main方法和System.out方法,在Idea也可以,不过要自己设置,步骤如下

1、打开File-Settings-Editor-Live Templaters,如下
IDEA中快速添加main和System方法_第1张图片
2、点击右边的+号选2-Template Group,新建一个组命名为JAVA
IDEA中快速添加main和System方法_第2张图片
3、选中JAVA组,点右边的+号,选1-Live Template
IDEA中快速添加main和System方法_第3张图片
4、添加一个main方法示例,其中的$start$为快捷键之后的光标位置

代码如下:

public static void main(String[] args) {
    $start$	
}

如下图
IDEA中快速添加main和System方法_第4张图片
5、把模板应用于java语言 : main-右键-change context
IDEA中快速添加main和System方法_第5张图片
选Java
IDEA中快速添加main和System方法_第6张图片
6、测试,输入main按回车就可以快速生成main方法了
IDEA中快速添加main和System方法_第7张图片

你可能感兴趣的:(idea)