Eclipse 中Template 的使用
具体的看下 http://blog.csdn.net/hivon/archive/2006/07/11/903563.aspx,
我写下自己写的一些template,如果觉得好的话,你可以加上去
1.sysout, 主要是加了一个提示内容,当然,一般情况下是推荐用log的,你也可以设log的template
System.out.println("${name}:\t" + ${name});
2.for array, 把length单独提出来,
for (int ${index} = 0,length= ${array}.length; ${index} <length; ${index}++) {
${line_selection}${cursor}
}
当然你也可以做个变换,例如,倒序的输出
for array reverse
for (int ${index} = ${array}.length -1; ${index} >=0 ; ${index}--) {
${line_selection}${cursor}
}
其他的,你可以自己按需要增加
时间: 2024-12-26 18:15:15