如何分配空的CString?
How to allocate empty CString?
cFunctionCall 填充 b,我能够将字符串的内容放入 GO 字符串中。但是,我认为我的内存分配(第 1 行)效率不高。
b := C.CString(strings.Repeat(" ", 50))
defer C.free(unsafe.Pointer(b))
C.cFunctionCall(b, 50)
rs := C.GoString(b)
log.Printf("rs: '%v'\n", rs)
如果你希望它在没有额外分配和从 Go 复制的情况下被初始化,你需要在 C 字符串上实现 strings.Repeat
函数:
func emptyString(size int) *C.char {
p := C.malloc(C.size_t(size + 1))
pp := (*[1 << 30]byte)(p)
bp := copy(pp[:], " ")
for bp < size {
copy(pp[bp:], pp[:bp])
bp *= 2
}
pp[size] = 0
return (*C.char)(p)
}
如果不需要初始化,您可以自己简单地 malloc/calloc 指针并将其传递给您的函数。
b := C.malloc(50) // or 51 if the depending on what size your function is expecting
defer C.free(unsafe.Pointer(b))
C.cFunctionCall((*C.char)(b), 50)
除非它被多次调用并且实际上造成了性能问题,否则请使用您已有的并减少您必须处理的 C 代码量。
cFunctionCall 填充 b,我能够将字符串的内容放入 GO 字符串中。但是,我认为我的内存分配(第 1 行)效率不高。
b := C.CString(strings.Repeat(" ", 50))
defer C.free(unsafe.Pointer(b))
C.cFunctionCall(b, 50)
rs := C.GoString(b)
log.Printf("rs: '%v'\n", rs)
如果你希望它在没有额外分配和从 Go 复制的情况下被初始化,你需要在 C 字符串上实现 strings.Repeat
函数:
func emptyString(size int) *C.char {
p := C.malloc(C.size_t(size + 1))
pp := (*[1 << 30]byte)(p)
bp := copy(pp[:], " ")
for bp < size {
copy(pp[bp:], pp[:bp])
bp *= 2
}
pp[size] = 0
return (*C.char)(p)
}
如果不需要初始化,您可以自己简单地 malloc/calloc 指针并将其传递给您的函数。
b := C.malloc(50) // or 51 if the depending on what size your function is expecting
defer C.free(unsafe.Pointer(b))
C.cFunctionCall((*C.char)(b), 50)
除非它被多次调用并且实际上造成了性能问题,否则请使用您已有的并减少您必须处理的 C 代码量。