Golang设计模式之装饰模式

1. 概述

装饰模式就是在不改变对象内部结构的情况下,动态扩展它的功能。它提供了灵活的方法来扩展对象的功能。

2. 实现

下面是一个简单的实现逻辑,通过Decorate来进一步装饰Dressing函数:

type Object func(string) string

func Decorate(fn Object) Object {
    return func(base string) string {

        ret := fn(base)

        ret = ret + " and Tshirt"
        return ret
    }
}

func Dressing(cloth string) string {
    return "dressing " + cloth
}

3. 使用方式

f := Decorate(Dressing)
fmt.Println(f("shoes"))

你可能感兴趣的:(go)