Golang关于匿名结构体的一些总结
我们的故事的主人公是一个刚毕业的大学生小明: type User struct { RealName string Age int } user := User{RealName:"小明",Age:21} 25岁的时候他有了一辆车,于是我们为他定义一个车子的结构体: type Cart struct{ Brand string Price float64 } type User struct { RealName string Age int Cart Cart } cart := Cart{Brand:"本田",Price:100000.00} user := User{RealName:"小明",Age:21,Cart:cart} 30岁的时候,升级加薪,并为自己刚取的媳妇也买了一辆车:...阅读全文