We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4e8cec commit 5d722eeCopy full SHA for 5d722ee
doc/effective_go.html
@@ -5641,7 +5641,7 @@ <h3 id="Go程">Go程</h3>
5641
<p>
5642
我们称之为<b>Go程</b>是因为现有的术语—线程、协程、进程等等—无法准确传达它的含义。
5643
Go程具有简单的模型:它是与其它Go程并发运行在同一地址空间的函数。它是轻量级的,
5644
-所有小号几乎就只有栈空间的分配。而且栈最开始是非常小的,所以它们很廉价,
+所有消耗几乎就只有栈空间的分配。而且栈最开始是非常小的,所以它们很廉价,
5645
仅在需要时才会随着堆空间的分配(和释放)而变化。
5646
</p>
5647
@@ -5724,7 +5724,7 @@ <h3 id="Go程">Go程</h3>
5724
</div>
5725
5726
5727
-在Go中,函数字面都是闭包:其实现在保证了函数内引用变量的生命周期与函数的活动时间相同。
+在Go中,函数字面都是闭包:其实现保证了函数内引用变量的生命周期与函数的活动时间相同。
5728
5729
5730
<div class="english">
0 commit comments