什么是模版方法模式
把多个类公有的代码抽象出来成为一个父类,并开放接口将不同的代码交由子类来实现。
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 32 33
| public abstract class Student { protected void show(){ System.out.println("我的名字是:"+getName()); System.out.println("我的学号是:"+getNo()); } protected abstract String getNo(); protected abstract String getName(); } public class StudentA extends Student { protected String getNo() { return "001"; } protected String getName() { return "小A"; } } public class StudentB extends Student { protected String getNo() { return "002"; } protected String getName() { return "小B"; } } public class Main{ public static void main(String[] args){ Student sa = new StudentA(); sa.show(); Student sb = new StudentB(); sb.show(); } }
|