Skip to content

Commit

Permalink
14.0-14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
unknwon committed Jan 1, 2016
1 parent ca23664 commit 8829070
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 51 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

## 翻译进度

13.10 [性能调试:分析并优化 Go 程序](eBook/13.10.md)
14.1 [并发、并行和协程](eBook/14.1.md)

## 支持本书

Expand Down
8 changes: 1 addition & 7 deletions README_gc.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,4 @@ Golang 编程:245386165

|更新日期 |更新内容
|----------|------------------
|2015-11-25|13.10 性能调试:分析并优化 Go 程序
|2015-12-10|15.0 15.1 15.2
|2015-12-12|15.3
|2015-12-22|15.4
|2015-12-25|14.1
|2015-12-28|14.2
|2015-12-30|14.3 14.4
|2015-12-31|14.1 并发、并行和协程
6 changes: 3 additions & 3 deletions eBook/14.0.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# 14 协程(goroutine)与通道(channel)

作为一门21世纪的语言,Go 原生支持应用之间的通信(网络,客户端和服务端,分布式计算,参见 15 章)和程序的并发。程序可以在不同的处理器和计算机上同时执行不同的代码段。Go 语言为构建并发程序的基本代码块是 协程 (goroutine) 与通道 (channel)。他们需要语言,编译器,和runtime的支持。Go 语言提供的垃圾回收器对并发编程至关重要。
作为一门 21 世纪的语言,Go 原生支持应用之间的通信(网络,客户端和服务端,分布式计算,参见第 15 章)和程序的并发。程序可以在不同的处理器和计算机上同时执行不同的代码段。Go 语言为构建并发程序的基本代码块是 协程 (goroutine) 与通道 (channel)。他们需要语言,编译器,和runtime的支持。Go 语言提供的垃圾回收器对并发编程至关重要。

*不要通过共享内存来通信,而通过通信来共享内存。*
**不要通过共享内存来通信,而通过通信来共享内存。**

通信强制协作。

## 链接

- [目录](directory.md)
- 上一节:[性能调试:分析并优化 Go 程序](13.10.md)
- 下一节:[并发并行和协程](14.1.md)
- 下一节:[并发并行和协程](14.1.md)
Loading

0 comments on commit 8829070

Please sign in to comment.