go

在cgo中的垃圾回收

英文: Garbage collection in cgo 问题 我在Go中有以下使用cgo的代码: func foo() { bar := new(C.struct_bar) ... } 在函数执行...