Skip to content

Files

Latest commit

Feb 9, 2025
126072d · Feb 9, 2025

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jan 12, 2023
Jan 12, 2023
Apr 29, 2024
Feb 9, 2025
Jan 12, 2023
Jan 12, 2023

README.md

代码结构

- src
  - Shape.ts # 基础抽象接口,形状
  - Square.ts # 具体实现一,方形
  - Circle.ts # 具体实现之一,圆形
  - ShapeDecorator.ts # 抽象装饰类,是否实现基础Shape可选
  - RedShapeDecorator.ts # 具体装饰器之一,设置Shape红色
  - ShadowShapeDecorator.ts # 具体装饰器之一,设置Shape阴影

测试验证

$ cd ./decorator-pattern/ts
$ tsc
$ node test/test.js