码迷,mamicode.com
首页 > 其他好文 > 详细

二、模版方法设计模式

时间:2014-06-13 13:20:49      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:class   blog   code   java   tar   ext   

模板方法设计模式:

解决的问题:当功能内部一部分实现是确定,一部分实现是不确定的。这时可以把不确定的部分暴露出去,让子类去实现。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
abstract class GetTime{
 
    public final void getTime(){ //此功能如果不需要复写,可加final限定
 
        long start = System.currentTimeMillis();
 
        code(); //不确定的功能部分,提取出来,通过抽象方法实现
 
        long end = System.currentTimeMillis();
 
        System.out.println("毫秒是:"+(end-start));
 
    }
 
    public abstract void code(); //抽象不确定的功能,让子类复写实现
 
}
 
class SubDemo extends GetTime{
 
    public void code(){ //子类复写功能方法
 
        for(int y=0; y<1000; y++){
 
            System.out.println("y");
 
        }
 
    }
 
}

 

二、模版方法设计模式,布布扣,bubuko.com

二、模版方法设计模式

标签:class   blog   code   java   tar   ext   

原文地址:http://www.cnblogs.com/huihui88888888/p/3772032.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!