Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我注意到 gccgo 中还没有实现垃圾收集。
http://golang.org/doc/gccgo_install.html#Unimplemented
标准 Go 编译器 (gc) 是否支持垃圾回收?
gccgo 有自己的运行时,计划改用 gc 和 gccgo 共享的单个运行时。
此外,当前 gc 中的垃圾收集器相当简单,基于 IBM 所做研究的并发且更快的实现正在开发中,并且可能会被 gccgo 和 gc 使用。
是的。