摘要: package school import "fmt" func init() { fmt.Println("school包初始化了") } type School struct { } func (s *School) PrintSchool() { fmt.Println("我是一所学校") } 阅读全文
posted @ 2024-11-09 14:27 今天滴天气不错 阅读(2) 评论(0) 推荐(0) 编辑