`# 下面代码会输出什么
type People struct {
Gender bool
Name string
}
func (p *People) GetName() string {
return p.Name
}
t
2024-03-13