effective go这里介绍应该先完成以下内容:
- 语言说明书
- Tour of Go (线上练习)
- How to write Go code
This document gives tips for writing clear, idiomatic Go code. It augments the language specification, the Tour of Go, and How to Write Go Code, all of which you should read first.
2之前练习过,虽然现在忘的差不多了,3已结完成。开始啃骨头——
The Go Programming Language Specification
Version of Jan 14, 2020
最新介绍的:The syntax is specified using Extended Backus-Naur Form (EBNF) “扩展的巴科斯-诺尔范式 ”
< > : 内包含的为必选项。
[ ] : 内包含的为可选项。
{ } : 内包含的为可重复0至无数次的项。
| : 表示在其左右两边任选一项,相当于”OR”的意思。
::= : 是“被定义为”的意思
“…” : 术语符号
[…] : 选项,最多出现一次
{…} : 重复项,任意次数,包括 0 次
(…) : 分组
| : 并列选项,只能选一个
斜体字: 参数,在其它地方有解释
进度:https://golang.org/ref/spec#Types
有疑问加站长微信联系(非本文作者)