我试图从C创建一个go字符串。我有指针和长度,所以如果我从go开始,我可以调用C.GoStringN
函数。
cgo
生成GoString
结构,所以我想知道我是否可以直接使用它:
// struct generated by cgo
typedef struct { const char *p; GoInt n; } GoString;
// I have s and n from somewhere else, can I do this ?
const char* s = ... ; // I own this and dont want go to free it
int n = ... ;
GoString st = {s, n } ;
我在here中使用此功能从我控制的生命周期char*
中创建一个go字符串。然后将GoString
用作go函数的参数:
//export Nbytes
func Nbytes(s string) int {
...
}
垃圾收集器是否会尝试回收内存?
答案 0 :(得分:3)
Go的垃圾收集器不会尝试回收使用C内存分配器分配的内存。你所描述的应该是安全的。当然,你可能无法释放C内存,因为你不知道Go什么时候会用它来完成。