Go结构可以从另一个结构的类型继承一组值吗?这样的事情。type Foo struct { Val1, Val2, Val3 int}var f *Foo = &Foo{123, 234, 354}type Bar struct { // somehow add the f here so that it will be used in "Bar" inheritance OtherVal string}这会让我做到这一点。b := Bar{"test"}fmt.Println(b.Val2) // 234如果没有,可以使用什么技术来实现类似的效果?
1 回答
- 1 回答
- 0 关注
- 137 浏览
添加回答
举报
0/150
提交
取消