golang对象
Posted haha1680737
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了golang对象相关的知识,希望对你有一定的参考价值。
对象和组合
package main import ( "fmt" ) type father struct { name string sex int } type sun struct { father age int } func main() { m:=father{name:"father",sex:11} s:=sun{father:father{name:"son",sex:12},age:14} fmt.Println(s) fmt.Println("name",s.name) fmt.Println("name",m.name) fmt.Println("sex",s.sex) fmt.Println("sex",m.sex) fmt.Println("age",s.age) }
以上是关于golang对象的主要内容,如果未能解决你的问题,请参考以下文章