Post

go包管理

包舒适化顺序

  • main.go先执行import的包
  • import的顺序为深度优先
  • 同一个包中先执行const -> var ->init(可以有多个,执行顺序无序)
  • 同一个包只能初始化一次

参考

  • https://blog.csdn.net/claram/article/details/77745665
This post is licensed under CC BY 4.0 by the author.