摘要: class Template {private Type template;public Template() { }public Template(Type template) { setTemplate(template); }public void setTemplate(Type template) { this.template = template; }public Type getTemplate() { return template; }public void Myprint() { System.out.println(template.toString());}publi 阅读全文
posted @ 2013-09-04 10:17 罗小姿 阅读(312) 评论(0) 推荐(0) 编辑