场景是使用公共字段传递类似的结构,并将它们设置为以params传递的值:
package main
type A struct {
Status int
}
type B struct {
id string
Status int
}
// It's okay to pass by value because content is only used inside this
func foo(v interface{}, status int) {
switch t := v.(type) {
case A, B:
t.Status = status // ERROR :-(
}
}
func main() {
a := A{}
foo(a, 0)
b := B{}
b.id = "x"
foo(b, 1)
}
令我沮丧的是,我收到了这个错误:
➜ test go run test.go
# command-line-arguments
./test.go:15: t.Status undefined (type interface {} has no field or method Status)
如果类型转换将接口{}转换为基础类型,我做错了什么?
答案 0 :(得分:5)
即使A和B都有状态字段,它们也不能与类型系统互换。你必须为每个案件分别设置案例。
case A:
t.Status = status
case B:
t.Status = status
}
或者,您可以使用实际界面:
type HasStatus interface {
SetStatus(int)
}
type A struct {
Status int
}
func (a *A) SetStatus(s int) { a.Status = s }
func foo(v HasStatus, status int) {
v.SetStatus(status)
}
如果您有多个类型都具有一组通用字段,则可能需要使用嵌入式结构:
type HasStatus interface {
SetStatus(int)
}
type StatusHolder struct {
Status int
}
func (sh *StatusHolder) SetStatus(s int) { sh.Status = s }
type A struct {
StatusHolder
}
type B struct {
id string
StatusHolder
}