我有这个示例代码
package main
import (
"fmt"
)
type IFace interface {
SetSomeField(newValue string)
GetSomeField() string
}
type Implementation struct {
someField string
}
func (i Implementation) GetSomeField() string {
return i.someField
}
func (i Implementation) SetSomeField(newValue string) {
i.someField = newValue
}
func Create() IFace {
obj := Implementation{someField: "Hello"}
return obj // <= Offending line
}
func main() {
a := Create()
a.SetSomeField("World")
fmt.Println(a.GetSomeField())
}
SetSomeField 不能按预期工作,因为它的接收器不是指针类型。
如果我将方法更改为指针接收器,我希望可以工作,它看起来像这样:
func (i *Implementation) SetSomeField(newValue string) { ...
编译这会导致以下错误:
prog.go:26: cannot use obj (type Implementation) as type IFace in return argument:
Implementation does not implement IFace (GetSomeField method has pointer receiver)
如何在不创建副本的情况下struct实现接口和方法SetSomeField更改实际实例的值?
这是一个可破解的片段:https : //play.golang.org/p/ghW0mk0IuU
我已经在 go (golang) 中看到了这个问题,如何将接口指针转换为结构指针?,但我看不出它与这个例子有什么关系。
慕侠2389804
天涯尽头无女友
相关分类