摘要: //1.%v 响应值的默认格式 a:=10 fmt.Printf("我有%v个苹果",a)打印结果:我有10个苹果//2.%+v 格式化输出结构体时会添加上字段 type Demo struct { name string sex string} b:=Demo{ name: "chenshi", 阅读全文
posted @ 2021-02-20 14:25 火星包up 阅读(55) 评论(1) 推荐(0) 编辑