模板模式1
package com.Template;public class Test {public static void main(String[] args) throws InstantiationException, IllegalAccessException, ClassNotFoundException{Car car = new CarImpl();car.toHangzhou(); }}
?
发布时间: 2013-12-16 23:49:16 作者: rapoo
模板模式1
package com.Template;public class Test {public static void main(String[] args) throws InstantiationException, IllegalAccessException, ClassNotFoundException{Car car = new CarImpl();car.toHangzhou(); }}
?