dongqiao8421 2014-12-17 18:40
浏览 583
已采纳

如何将[1024] C.char转换为[1024] byte

How do I convert this C (array) type:

char my_buf[BUF_SIZE];

to this Go (array) type:

type buffer [C.BUF_SIZE]byte

? Trying to do an interface conversion gives me this error:

cannot convert (*_Cvar_my_buf) (type [1024]C.char) to type [1024]byte
  • 写回答

2条回答 默认 最新

  • duanqianwei2485 2014-12-17 19:00
    关注

    The easiest and safest way is to copy it to a slice, not specifically to [1024]byte

    mySlice := C.GoBytes(unsafe.Pointer(&C.my_buff), C.BUFF_SIZE)
    

    To use the memory directly without a copy, you can "cast" it through an unsafe.Pointer.

    mySlice := (*[1 << 30]byte)(unsafe.Pointer(&C.my_buf))[:int(C.BUFF_SIZE):int(C.BUFF_SIZE)]
    // or for an array if BUFF_SIZE is a constant
    myArray := *(*[C.BUFF_SIZE]byte)(unsafe.Pointer(&C.my_buf))
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 关于大棚监测的pcb板设计
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入