更多文章,请大家移步到新的博客:blog.haoitsoft.com,谢谢大家一直以来的支持!!!
-
archive/tar
和/zip-compress
:压缩(解压缩)文件功能。 -
fmt
-io
-bufio
-path/filepath
-flag
: -
-
fmt
: 提供了格式化输入输出功能。 -
io
: 提供了基本输入输出功能,大多数是围绕系统功能的封装。 -
bufio
: 缓冲输入输出功能的封装。 -
path/filepath
: 用来操作在当前系统中的目标文件名路径。 -
flag
: 对命令行参数的操作。
-
-
strings
-strconv
-unicode
-regexp
-bytes
: -
math
-math/cmath
-math/big
-math/rand
-sort
: -
container
-/list-ring-heap
: 实现对集合的操作。 -
-
list
: 双链表
-
- time-
-
-
time
: 日期和时间的基本操作。 -
log
: 记录程序运行时产生的日志
-
-
encoding/json
-encoding/xml
-text/template
: -
-
encoding/json
: 读取并解码和写入并编码 JSON 数据。 -
encoding/xml
:简单的 XML1.0 解析器 -
text/template
:生成像 HTML 一样的数据与文本混合的数据驱动模板
-
-
net
-net/http
-html
-
-
net
: 网络数据的基本操作。 -
http
: 提供了一个可扩展的 HTTP 服务器和基础客户端,解析 HTTP 请求和回复。 -
html
: HTML5 解析器。
-
-
runtime
: Go 程序运行时的交互操作,例如垃圾回收和协程创建。 -
reflect
: 实现通过程序运行时反射,让程序操作任意类型的变量
log
: