标签: go
给出以下代码:如何使用基于A
type A struct { Id int } type B A func main() { var b = &B{Id:1} fmt.Printf("%T", b) }