##
type (
Human struct {
age int
}
Men struct {
Human
}
)
person := Human{ 20 }
此时,我想把 Human 转为 Men 类型的却无法转换
打包体积过大
未做处理前, 我们的项目打包体积为 63M
- 初步压缩
go build -ldflags '-w -s'
,此处体积 30M - upx 去壳
upx build-file
, 此处体积 13M