🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
~~~ package decorator import ( "fmt" "testing" ) func TestDecorator(t *testing.T) { person := &person{"hcl"} person.show() fmt.Println() ts := new(TShirts) ts.SetDecorator(person) ts.show() fmt.Println() bt := new(BigTrouser) bt.SetDecorator(ts) bt.show() fmt.Println() sk := new(Sneakers) sk.SetDecorator(bt) sk.show() } ~~~