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

《大话设计模式》--模板模式

时间:2017-08-24 18:04:23      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:实现   bsp   ted   相同   []   面向   模式   string   extends   

题目:相同的两份试卷,甲乙两个人做,答案不同

public class TestPager {
    public void question() {
        System.out.println("题目:答案是A、B、C、D中哪一个?");
        System.out.println("答案:" + answer());
    }

    protected String answer() {
        return "";
    }
}
public class TestPagerA extends TestPager {
    @Override
    protected String answer() {
        return "A";
    }
}

public class TestPagerB extends TestPager {
    @Override
    protected String answer() {
        return "B";
    }
}
public class Test {
    public static void main(String args[]) {
        System.out.println("甲的试卷");
        TestPager studentA = new TestPagerA();
        studentA.question();

        System.out.println("乙的试卷");
        TestPager studentB = new TestPagerB();
        studentB.question();
    }
}

 

打印结果:

甲的试卷
题目:答案是A、B、C、D中哪一个?
答案:A
乙的试卷
题目:答案是A、B、C、D中哪一个?
答案:B

 

这其实就是通过面向对象的三大特性实现代码的复用,使重复代码降到最低

《大话设计模式》--模板模式

标签:实现   bsp   ted   相同   []   面向   模式   string   extends   

原文地址:http://www.cnblogs.com/anni-qianqian/p/7424134.html

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