MATLAB 2017-12-14
package com.dreamy.day03;
/**
* @author dreamy
* 需求:获取一段程序运行的时间
* 原理:获取程序开始和结束的时间并相减即可。
* 获取时间:System.currentTimeMillis()
*
*
* 当代码完成优化后,就可以解决这类问题
* 这种方式叫做模版方法设计模式。
*
* 什么是模版方法呢?
* 在定义功能时,功能的一部分是确定的,但是有一部分是不确定的,而确定的部分在使用的不确定的部分,
* 那么这时就将不确定的部分暴露出去,由该类的子类去完成。
*/
public class TempleDemo {
public static void main(String[] args) {
// GetTime gt=new GetTime();
// gt.getTime();
SubTime st=new SubTime();
st.getTime();
}
}
abstract class GetTime{
public final void getTime() {
long start =System.currentTimeMillis();
runcode();
long end=System.currentTimeMillis();
System.out.println("毫米:"+(end-start));
}
public abstract void runcode();
}
class SubTime extends GetTime {
// public void getTime() {
// long start =System.currentTimeMillis();
// for(int x=0;x<4000;x++) {
// System.out.println(x);
// }
// long end=System.currentTimeMillis();
// System.out.println("毫米:"+(end-start));
// }
public void runcode() {
for(int x=0;x<4000;x++) {
System.out.println(x);
}
}
}