小编典典

(* [1 << 30] C.YourType)在CGo中到底做什么?

go

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切片?


阅读 424

收藏
2020-07-02

共1个答案

小编典典

*[1 << 30]C.YourType本身不做任何事情,这是一种类型。具体来说,它是指向size 1 << 30C.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]
2020-07-02