深情水蜜桃

文章
5
资源
0
加入时间
2年10月17天

3、Go mod及包管理

一、 Golang 中包的介绍和定义包(package) 是多个 Go 源码的集合, 是一种高级的代码复用方案, Go 语言为我们提供了很多内置包, 如 fmt、 strconv、 strings、 sort、 errors、 time、 encoding/json、 os、 io 等。Golang 中的包可以分为三种: 1、 系统内置包 2、 自定义包 3、 第三方包系统内置包: Golang 语言给我们提供的内置包, 引入后可以直接使用, 如 fmt、 strconv、 strings、so