为了账号安全,请及时绑定邮箱和手机立即绑定

Go结构体可以继承一组值吗?

Go结构体可以继承一组值吗?

Go
繁星coding 2021-05-09 20:45:08
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
提交
取消
意见反馈 帮助中心 APP下载
官方微信