我正在尝试从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 {
...
}
Go的垃圾收集器会尝试回收内存吗?
最佳答案
Go的垃圾回收器不会尝试回收使用C内存分配器分配的内存。您所描述的应该是安全的。当然,您可能无法释放C内存,因为您不知道Go将在何时完成。
关于go - 用cgo在C语言中编写go字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44475923/