A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

模版方法设计模式代码示例:获取一段程序的运行时间
  1. abstract class GetTime
  2. {
  3. public final void getTime()
  4.         {
  5.                 long start = System.currentTimeMillis();
  6.                 runcode();
  7.                 long end = System.currentTimeMillis();
  8.                 System.out.println("毫秒:"+(end-start));
  9.         }
  10.         public abstract void runcode();
  11. }
  12. class SubTime extends GetTime
  13. {
  14.         public void runcode()
  15.         {               
  16.                 for(int x=0; x<4000; x++)
  17.                 {
  18.                         System.out.print(x);
  19.                 }
  20.         }
  21. }
  22. class  TemplateDemo
  23. {
  24.         public static void main(String[] args)
  25.         {
  26.                 SubTime gt = new SubTime();
  27.                 gt.getTime();
  28.         }
  29. }
复制代码



1 个回复

倒序浏览
是不是呢?
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马