1
0
mirror of https://github.com/chai2010/advanced-go-programming-book.git synced 2025-05-24 12:32:21 +00:00
2018-08-04 07:07:30 +08:00

5 lines
942 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 1.8 补充说明
本书定位是Go语言进阶图书因此读者需要有一定的Go语言基础。如果对Go语言不太了解作者推荐通过以下资料开始学习Go语言。首先是安装Go语言环境然后通过`go tool tour`命令打开“A Tour of Go”教程学习。在学习“A Tour of Go”教程的同时可以阅读Go语言官方团队出版的[《The Go Programming Language》](http://www.gopl.io/)教程。[《The Go Programming Language》](http://www.gopl.io/)在国内Go语言社区被称为Go语言圣经它将带你系统地学习Go语言。在学习的同时可以尝试用Go语言解决一些小问题如果遇到要查阅API的时候可以通过godoc命令打开自带的文档查询。Go语言本身不仅仅包含了所有的文档也包含了所有标准库的实现代码这是第一手的最权威的Go语言资料。我们此时你应该已经可以熟练使用Go语言了。