码迷,mamicode.com
首页 > 其他好文 > 详细

03 常用模板

时间:2020-02-23 14:59:00      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:editor   edit   lis   strong   输入   变量   templates   live   res   

比如输入 main 直接出来了 public static void main

已经预定义了

在 Editor -> Live Templates 中有一些常用的. (可以编辑)

常用模板

psvm: public static void main

sout: system.out.println

soutv 打印变量, 就近选择变量. 或者是用 num1.sout (这种也可以, num1 是一个变量名)

fori

for (int i = 0; i < ; i++) {

}

iter

for (Object o : ) {

}

itar

for (int i = 0; i < array.length; i++) {
= array[i];

}
list.for , list.fori, list.forr (reserve)ArrayList list = new ArrayList();list.add(123);list.add("abc");
for (Object o : list) {    }
ifn
prsf 私有静态常量




03 常用模板

标签:editor   edit   lis   strong   输入   变量   templates   live   res   

原文地址:https://www.cnblogs.com/moveofgod/p/12349625.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!