欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java 模板方法模式

程序员文章站 2022-06-15 13:30:00
在定义功能时,功能的一部分是确定的,但是有一部分是不确定的,而确定的部分在使用不确定的部分,那么这时就将不确定的部分暴露出去。由子类去完成。 案例:求一段代码的运行时间 abstract class GetTime{ public final void getTime(){ long start = ......

在定义功能时,功能的一部分是确定的,但是有一部分是不确定的,而确定的部分在使用不确定的部分,那么这时就将不确定的部分暴露出去。由子类去完成。

案例:求一段代码的运行时间

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 test extends gettime{

    @override
    public void runcode() {
        for (int i = 0; i < 10000; i++) {
            system.out.println(i);
        }
    }
}

public class demo{
    public static void main(string[] args) {
        test test = new test();
        test.gettime();
    }
}