AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
``` ~~~ package main type Person struct { name string age int64 sex string } // 公司 type company struct { companyName string companyAddress string } // 员工, 继承了company结构体 type staff struct { name string age int64 sex string company } // interface,多态 type Good interface { totalPrice() int64 goodsInfo() string } type Apple struct { name string quantity int64 price int64 } type Pear struct { name string quantity int64 price int64 } // Tag // omitempty:当值为false, 0, 空指针,空接口,空数组,空切片,空映射,空字符串中的一种时,就会被忽略 type People struct { Name string `json:"name"` Age string `json:"age"` Sex string `json:"sex,omitempty"` } ~~~ ```