2 回答
TA贡献1818条经验 获得超3个赞
您可以使用反射来设置传递的接口。即使将结构引用作为接口传递,底层类型信息也不会丢失,我们可以使用反射。
package main
import (
"fmt"
"reflect"
)
type Savable interface {}
type Customer struct {
Name string
}
func GetSaved(id string, s Savable) {
cached := Customer{ Name: id }
c1 := reflect.ValueOf(cached)
reflect.ValueOf(s).Elem().Set(c1)
}
func main() {
c := Customer{}
fmt.Printf("Before: %v\n", c)
GetSaved("bob", &c)
fmt.Printf("After: %v\n", c)
}
这是运行链接
TA贡献1851条经验 获得超4个赞
这有效,我将它转换为字节并将其解组回您的结构。希望这可以帮助。:) 包主要
import (
"encoding/json"
"fmt"
)
type Savable interface{}
type Customer struct {
Name string
} // satisfies 'Savable'
func GetSaved(id string, s Savable) {
// somehow get a reference to the object from cache
cached := Customer{Name: "Bob"}
byt, _ := json.Marshal(cached)
_ = json.Unmarshal(byt, &s)
}
func main() {
c := Customer{}
GetSaved("bob", &c)
fmt.Println(c)
}
运行链接: https: //play.golang.org/p/NrBRcRmXRVZ
- 2 回答
- 0 关注
- 165 浏览
添加回答
举报