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}
}
其他的,你可以自己按需要增加