在Golang Wiki的 “将C数组转换为Go切片”下,有一段代码演示了如何创建由C数组支持的Go切片。
import "C" import "unsafe" ... var theCArray *C.YourType = C.getTheArray() length := C.getTheArrayLength() slice := (*[1 << 30]C.YourType)(unsafe.Pointer(theCArray))[:length:length]
谁能确切解释什么(*[1 << 30]C.YourType)?它如何unsafe.Pointer变成Go切片?
(*[1 << 30]C.YourType)
unsafe.Pointer
*[1 << 30]C.YourType本身不做任何事情,这是一种类型。具体来说,它是指向size 1 << 30,C.YourType值数组的指针。
*[1 << 30]C.YourType
1 << 30
C.YourType
您在第三个表达式中所做的是类型转换。这会将转换unsafe.Pointer为*[1 << 30]C.YourType。
然后,您将获取转换后的数组值,并将其转换为带有完整切片表达式的切片(切片表达式无需解引用数组值,因此无需在值前加上*,尽管它是一个指针)。
*
您可以像这样扩展它:
// unsafe.Pointer to the C array unsafePtr := unsafe.Pointer(theCArray) // convert unsafePtr to a pointer of the type *[1 << 30]C.YourType arrayPtr := (*[1 << 30]C.YourType)(unsafePtr) // slice the array into a Go slice, with the same backing array // as theCArray, making sure to specify the capacity as well as // the length. slice := arrayPtr[0:length:length]