摘要: 名字就说明了意思,代码示例如下abstract class GetTime{ public final void getTime(){ long startTime = System.getCurrentMillis(); runcode(); long endTime = System.getCurrentMillis(); System.out.println(endTime-stratTime); } public abstract void runcode();}class SubTime extends GetTime{ public void run... 阅读全文
posted @ 2013-11-19 22:44 剑握在手 阅读(127) 评论(0) 推荐(0)
返回顶部↑