Intellij IDEA快速编写代码

在工作时经常要写System.out.println(); 这个在idea里已经预设好了,直接输入 sout 然后按tab键就可以了,那么我们如何增加一些自定义的快捷操作。

 

sout=System.out.println();

 

soutp=System.out.println("");

 

soutv=System.out.println("变量名 = " + 变量);

 

soutm=System.out.println("当前类名.当前方法");

 

psvm=public static void main(String[] args) {}

 



 

猜你喜欢

转载自longzhun.iteye.com/blog/2238021