随笔

Golang 遇到的问题

##

type (
    Human struct {
        age int
    }

    Men struct {
        Human

    }
)

person := Human{ 20 }
此时,我想把 Human 转为 Men 类型的却无法转换

打包体积过大

未做处理前, 我们的项目打包体积为 63M

  1. 初步压缩 go build -ldflags '-w -s' ,此处体积 30M
  2. upx 去壳 upx build-file , 此处体积 13M

本文链接:https://note.lilonghe.net/post/golang-question.html

-- EOF --