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 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办