duanmeng3476 2016-07-11 14:50
浏览 225
已采纳

在C函数中更改golang C.String变量的值

i want to get an int and string from C function. int - error code, string - the data.

Tried that way:

package main
/*
#include <stdlib.h>
#include <string.h>
#include <stdio.h>

int test(char *out){
  snprintf(out, sizeof out, "1234567890abcd");
  return 0;
}

*/
import "C"

import (
  "fmt"
  "unsafe"
)

func main() {
  foo := C.CString("")
  defer C.free(unsafe.Pointer(foo))
  C.test(foo)
  fmt.Println("Output is: "+C.GoString(foo))
}

and it almost worked.

Output is: 1234567

but should be: 1234567890abcd

I think that size of C.String passed to C function is 8. But don't know how can I extend it (fixed size <> 8) or change into dynamic.

So the question is: How should I pass that variable to C?

  • 写回答

2条回答 默认 最新

  • dongzhao1930 2016-07-12 09:50
    关注

    After a research i found a solution:

    package main
    
    
    /*
    #include <stdlib.h>
    #include <string.h>
    #include <stdio.h>
    
    int test(char *out, int len){
      snprintf(out, len, "1234567890123456789012345671`iknvcap9nv1-93hbf1-39b");
      return 0;
    
    }
    
    */
    import "C"
    
    import (
      "fmt"
      "unsafe"
    )
    
    func main() {
      buf := make([]byte, 8192)
      C.test((*C.char)(unsafe.Pointer(&buf[0])), C.int(len(buf)))
      fmt.Println(string(buf))
    }
    

    To receive 'string' from C function, i had to create a slice:

      buf := make([]byte, 8192)
    

    and pass a pointer to it:

      C.test((*C.char)(unsafe.Pointer(&buf[0])), C.int(len(buf)))
    

    Using C.String in that situation is not working.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 划分vlan后不通了
  • ¥15 GDI处理通道视频时总是带有白色锯齿
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)
  • ¥15 自适应 AR 模型 参数估计Matlab程序
  • ¥100 角动量包络面如何用MATLAB绘制
  • ¥15 merge函数占用内存过大
  • ¥15 使用EMD去噪处理RML2016数据集时候的原理
  • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大