我需要做这样的事情:
// I have an interface with these two methods defined
type mapper interface {
ReadMapper(interface{}) interface{}
WriteMapper(interface{}) interface{}
}
ReadMapper
然后我需要分配WriteMapper
一些在项目其他地方定义的功能。有没有办法在 Go 中做这样的事情?给他们分配职能?
V1Mapper mapper
V1Mapper.ReadMapper = functions()....
V1Mapper.WriteMapper = functions()....
然后,我需要另一个映射,并希望映射器作为值类型,并希望执行如下操作。
mappingFunctions := map[string]mapper
mappingFunctions ["some_string"] = V1Mapper
然后从另一个文件中,我想这样做:
mappingFunctions["some_string"].ReadMapper(Data)
编辑:我从未在问题中要求语法。我只是想知道是否有更好的方法来做到这一点,因为我是 Go 新手。我同意我对 Go 的语法不是很熟悉,我将不得不阅读文档(不是一次,而是多次)。