摘要: /** * 规定装饰类与被装饰类都必须实现的方法 */interface component { function operation();}/** * 被装饰的类 */class concrete_component implements component { public func... 阅读全文
posted @ 2015-06-27 17:18 扬空 阅读(150) 评论(0) 推荐(0) 编辑