模板模式1package com.Templatepublic class Test {public static void main(String[] args) throws Inst
模板模式1 package com.Template;public class Test {public static void main(String[] args) throws InstantiationException, IllegalAccessException, ClassNotFoundException{Car car = new CarImpl();car.toHangzhou(); }}