精校:2.6

This commit is contained in:
Unknwon
2015-03-17 23:02:36 -04:00
parent e9ec4725d7
commit 44bbc5286b
4 changed files with 12 additions and 15 deletions

View File

@@ -1,4 +1,4 @@
# 2.7 Go runtime
# 2.7 Go 运行时(runtime
尽管 Go 编译器产生的是本地可执行代码,这些代码仍旧运行在 Go 的 runtime这部分的代码可以在 runtime 包中找到)当中。这个 runtime 类似 Java 和 .NET 语言所用到的虚拟机,它负责管理包括内存分配、垃圾回收(第 10.8 节、栈处理、goroutine、channel、切片slice、map 和反射reflection等等。