volte, un puntatore NULL può essere necessaria un'API C.CGO, come passare parametro NULL alla funzione C
è che possibile in CGO?
Per esempio, voglio passare un argomento null per strcmp()
in un programma in linguaggio Go:
package strutil
/*
#include <stdlib.h>
#include <string.h>
*/
import (
"C"
"unsafe"
)
func StrCmp(a, b string) int {
pca := C.CString(a)
defer C.free(pca)
pcb := C.CString(b)
defer C.free(pcb)
ret := C.strcmp(pca, pcb)
return int(ret)
}
Se ho impostato pca
-nil
, questo errore si verifica:
Exception 0xc0000005 0x0 0x0 0x76828b21
PC=0x76828b21
signal arrived during cgo execution
strutil._Cfunc_strcmp(0x0, 0x761b00, 0x0)
strutil/_obj/_cgo_gotypes.go:79 +0x49
strutil.StrCmp(0x19, 0x10, 0x4bbf38, 0xa, 0x1fbc1f98, 0x0, 0x0, 0xffff, 0x0, 0x0, ...)
Quindi, come posso passare NULL a strcmp?
Grazie
non ho usato l'API C in Go, ma per consentire la funzione di accettare una ' null', si poteva fare 'func StrCmp (a, b stringa *) int {...}' –