删除多余的字
This commit is contained in:
smart
2016-01-24 17:04:46 +08:00
parent c65641364e
commit 88713d19d9

View File

@@ -128,7 +128,7 @@ Received on channel 1: 94348
- `channel1` 用来接收极坐标
- `channel2` 用来接收笛卡尔坐标
转换过程需要在协程中进行,从 channel1 中读取然后发送到 channel2。实际上做这种计算不提倡使用协程和通道但是如果运算量很大很耗时这种方案设计就非常合适了。
转换过程需要在协程中进行,从 channel1 中读取然后发送到 channel2。实际上做这种计算不提倡使用协程和通道但是如果运算量很大很耗时这种方案设计就非常合适了。
练习 14.11 [concurrent_pi.go](exercises/chapter_14/concurrent_pi.go) / [concurrent_pi2.go](exercises/chapter_14/concurrent_pi2.go)