我有一个 C 函数,它在发生异常时返回 NULL。我如何在 Go 中检查返回值是否为 NULL,因为它没有内置类型来表示 C NULL。下面是我的代码
retVal := C.myfunc()
if retVal == nil {
// handle the error
}
慕桂英4014372
相关分类