摘要: // 装饰器接口 interface Decorator { function beforeDecorator(); function afterDecorator(); } // 改变颜色的装饰器 class ColorDecorator implements Decorator { function __construct( $color="red" ) {... 阅读全文
posted @ 2019-07-02 20:48 JiangBigShrimp 阅读(101) 评论(0) 推荐(0) 编辑