Go编程笔记(15)

package main

import (
	"fmt"
)

type A struct {
	Name string
	B
}

type B struct {
	Name string
}

func main() {
	a := A{Name: "A", B: B{Name: "B"}}
	fmt.Println(a.Name)
}


你可能感兴趣的:(Go编程笔记(15))