dpg78570 2018-06-29 22:04
浏览 20
已采纳

在类型结构上包装许多方法之一?

A library I use has a type with multiple methods:

type Foo struct {
}

func (f *Foo) method1() int { ... }
func (f *Foo) method2() int { ... }
func (f *Foo) method3() int { ... }
// ... and so on

I'd really like to apply some specific behavior anytime I call method1 on this type:

func (f *Foo) method1Wrapper() int {
    incrementCounter()
    return f.method1()
}

But this adds a new method I'd have to call instead of just directly calling method1() itself.

Alternatively, I imagine I could create my own type:

type Foo2 struct {
    Foo
}

func (f *Foo2) method1() int {
    incrementCounter()
    return f.Foo.method1()
}

But then I'd have to create a bunch of boilerplate code to proxy all the calls to method2, method3, etc down to the Foo implementation, and I'd have to change all my usages of Foo to Foo2.

  • 写回答

1条回答 默认 最新

  • dongyou9373 2018-06-29 22:20
    关注

    You don't need to proxy the method calls to delegate them, this is exactly what embedding is for.

    type Foo struct {
    }
    
    func (f *Foo) method1() int { return 1 }
    func (f *Foo) method2() int { return 2 }
    func (f *Foo) method3() int { return 3 }
    
    type Foo2 struct {
        *Foo
    }
    
    func (f Foo2) method1() int {
        fmt.Println("WRAPPED")
        return f.Foo.method1()
    }
    

    Foo2 has the same method set as Foo, but method1 is "intercepted" by Foo2, which explicitly calls Foo.method1 internally.

    https://play.golang.org/p/q8tea5ZuHl4

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 怎么改成循环输入删除(语言-c语言)
  • ¥15 安卓C读取/dev/fastpipe屏幕像素数据
  • ¥15 pyqt5tools安装失败
  • ¥15 mmdetection
  • ¥15 nginx代理报502的错误
  • ¥100 当AWR1843发送完设置的固定帧后,如何使其再发送第一次的帧
  • ¥15 图示五个参数的模型校正是用什么方法做出来的。如何建立其他模型
  • ¥100 描述一下元器件的基本功能,pcba板的基本原理
  • ¥15 STM32无法向设备写入固件
  • ¥15 使用ESP8266连接阿里云出现问题