如何转换此 C(数组)类型:
char my_buf[BUF_SIZE];
到这个 Go(数组)类型:
type buffer [C.BUF_SIZE]byte
? 尝试进行接口转换给了我这个错误:
cannot convert (*_Cvar_my_buf) (type [1024]C.char) to type [1024]byte
相关分类