Skip to content

Commit

Permalink
更新0717
Browse files Browse the repository at this point in the history
  • Loading branch information
ffhelicopter committed Jul 17, 2019
1 parent 20ff3df commit 99a678b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
作者ffhelicopter李骁时间2018-04-15


## 起因
## 前言
Go语言四十二章经》,纯粹是因为开发过程中碰到过的一些问题踩到过的一些坑感觉在Go语言学习使用过程中有必要深刻理解这门语言的核心思维清晰掌握语言的细节规范以及反复琢磨标准包代码设计模式于是才有了这本书

Go语言以语法简单门槛低上手快著称但入门后很多人发现要写出地道的遵循 Go语言思维的代码却是不易
Expand All @@ -30,7 +30,6 @@ function,method,interface,type等词语是程序员们接触比较多的

最后希望更多的人了解和使用Go语言也希望阅读本书的朋友们多多交流

联系邮箱roteman@163.com

祝各位Gopher们工作开心愉快编码

Expand All @@ -43,6 +42,18 @@ function,method,interface,type等词语是程序员们接触比较多的
#### [>>>开始阅读 第一章 Go安装与运行](https://github.com/ffhelicopter/Go42/blob/master/content/42_01_install.md)


## 新书推荐

Go语言高级编程从实践出发讲解 Go 语言编程的进阶知识本书共 6 1 章简单回顾 Go 语言的发展历史 2章和第 3 章系统介绍 CGO 编程和 Go 汇编语言的用法 4 章对 RPC Protobuf 技术进行深入介绍并讲述如何打造一个自己的 RPC 系统 5 章介绍企业级环境的 Web 系统的设计和相关技术 6 章介绍 Go 语言在分布式领域的一些编程技术


关于本书的作者

柴树杉网名 chai2010江湖人称柴大Go 语言代码贡献者https://github.com/golang/go/graphs/contributors 搜索 chai2010),《Go语言圣经》翻译者,《WebAssembly标准入门》图书作者,是国内最早接触 Go 语言并致力推广 Go 语言的先驱之一。

曹春晖网名 Xargin江湖人称曹大 Geek其个人博客可见一斑http://xargin.com/ ;对底层有很深的研究,https://github.com/cch123/golang-notes 这个 Repo 你应该 Star。滴滴公司的大佬。活跃于各个社区,很乐于解答大家的问题。



## 最新分享

Expand Down
2 changes: 1 addition & 1 deletion content/42_35_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Price: 26.89
```Go
// 建立模板,自动 new("name")
// ParseFiles接受一个字符串,字符串的内容是一个模板文件的路径。
// ParseGlob是用正则的方式匹配多个文件
// ParseGlob是用glob的方式匹配多个文件
Tmpl, err := template.ParseFiles("tmp.txt")

// 假设一个目录里有a.txt b.txt c.txt的话,用ParseFiles需要写3行对应3个文件,
Expand Down

0 comments on commit 99a678b

Please sign in to comment.