如何在 GO 中将“_Ctype_int”更改为“int”?

我有一个切片需要从 _Ctype_int 更改为 int。


fmt.Printf("Slice Type: %T", slice) //Returns Slice Type: []main._Ctype_int

你知道简单的转换吗?谢谢你!


这是在 C++ 中返回指向数组的指针的代码


   #include "camera.hxx"

   #include <iostream>


   Camera::Camera()

   {

   }


   int* Camera::retrieveDataPointerPerBuffer() {

     const int size = 640 * 512;

     static int cameraData[size]; 

     for (int i = 0; i < size; i++) {

     cameraData[i] = i;

      } //Generates dummy 512x640 camera data

      int* pSrc = cameraData;

      return pSrc;

   } //C++ file

此代码调用 Go 中的 c++ 函数。


func myCamera() {

    cam := camera.NewCamera()

    pSrc := cam.RetrieveDataPointerPerBuffer()


    arraySize := 512 * 640

    slice := (*[1 << 30]C.int)(unsafe.Pointer(pSrc))[:arraySize:arraySize]


    fmt.Printf("\nSlice Type: %T\n", slice)

 }


 func main() {

     go myCamera()

     time.Sleep(15 * time.Millisecond)

 }

我正在使用 SWIG 为 Go 包装 C++


白衣染霜花
浏览 114回答 1
1回答

慕标5832272

Cint和 Go的大小int取决于实现,它们不一定相同。例如,要在不同的内存布局之间进行转换,package mainimport (&nbsp; &nbsp; "fmt"&nbsp; &nbsp; "unsafe")import "C"func main() {&nbsp; &nbsp; cInts := []C.int{0, 1, 2}&nbsp; &nbsp; fmt.Println(C.sizeof_int, cInts)&nbsp; &nbsp; goInts := make([]int, len(cInts))&nbsp; &nbsp; for i, ci := range cInts {&nbsp; &nbsp; &nbsp; &nbsp; goInts[i] = int(ci)&nbsp; &nbsp; }&nbsp; &nbsp; fmt.Println(unsafe.Sizeof(int(0)), goInts)}输出:4 [0 1 2]8 [0 1 2]$ go versiongo version devel +0349f29a55 Thu Feb 21 15:14:45 2019 +0000 linux/amd64$ gcc --versiongcc (Ubuntu 8.2.0-7ubuntu1) 8.2.0$ g++ --versiong++ (Ubuntu 8.2.0-7ubuntu1) 8.2.0$&nbsp;
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go