英文: Is there a way to release unmanaged resources when a Go struct is collected? 问题 我有一个指向由Go结构体包装的C...
垃圾收集器如何从堆栈中找出对象引用?
英文: How can a garbage collector find out about object references done from the stack? 问题 在像Haskell或G...
垃圾回收和cgo
英文: Garbage collection and cgo 问题 在Go语言中,可以通过C代码分配和释放内存,但是垃圾回收器无法直接处理和释放通过C代码分配的内存。如果你想在Go语言中使用一个C库,...
Go语言默认情况下会对哪些对象进行终结操作,并且有哪些潜在问题?
英文: Which objects are finalized in Go by default and what are some of the pitfalls of it? 问题 函数<c...
如果在Go语言中,垃圾回收是可选的,会怎样呢?
英文: What if the gc were optional in go? 问题 这样的语言是否可行,或者go语言中是否有一些特定的功能绝对需要某种形式的垃圾回收? 注意:我并不反对垃圾回收,但是...
Go使用什么类型的垃圾回收机制?
英文: What kind of Garbage Collection does Go use? 问题 Go是一种垃圾回收语言: http://golang.org/doc/go_faq.html#g...
垃圾回收是否与Go编译器(gc)一起工作?
英文: Does garbage collection work with the Go compiler (gc)? 问题 我注意到gccgo中尚未实现垃圾回收。 http://golang.org...
14