douyingbei1458 2017-05-17 09:00
浏览 225
已采纳

无法调用unsafe.Pointer(指向C函数)作为函数

I'm trying to call C function with same signature they take 2 int arguments. and this error cannot call non-function f (type unsafe.Pointer) appear during compile.

package main

/*
int add(int a, int b) {
  return a+b;
}
int sub(int a, int b) {
  return a-b;
}
*/
import "C"
import (
    "fmt"
    "unsafe"
)

func main() {
    a := C.int(1)
    b := C.int(2)
    fx := make([]unsafe.Pointer, 2)
    fx[0] = C.add
    fx[1] = C.sub
    for _, f := range fx {
        fmt.Printf("Result: %d
", f(a, b))
    }
}

Now I'm working around with wrap C function with go function and add go function into slice instead like this

package main

/*
int add(int a, int b) {
  return a+b;
}
int sub(int a, int b) {
  return a-b;
}
*/
import "C"
import (
    "fmt"
)

func add(a, b int) int {
    return (int)(C.add(C.int(a), C.int(b)))
}

func sub(a, b int) int {
    return (int)(C.sub(C.int(a), C.int(b)))
}

func main() {
    fx := [](func(int, int) int){
        add, sub,
    }
    for _, f := range fx {
        fmt.Printf("Result: %d
", f(1, 2))
    }
}

Is there any way to call C function from unsafe.Pointer, I'm using GO 1.8.1 Linux

  • 写回答

1条回答 默认 最新

  • dsg41888 2017-05-18 08:31
    关注

    I can solve my problem, according to Go references to C.

    Calling C function pointers is currently not supported, however you can declare Go variables which hold C function pointers and pass them back and forth between Go and C. C code may call function pointers received from Go.

    It's looks like I have to create a bridge function for call C function pointer

    package main
    
    /*
    int add(int a, int b) {
      return a+b;
    }
    int sub(int a, int b) {
      return a-b;
    }
    
    typedef int(*math_fp)(int, int);
    
    const int len_operator = 2;
    
    math_fp math_operators[2] = {
        add, sub
    };
    
    int do_math(math_fp op, int a, int b) {
        return op(a, b);
    }
    */
    import "C"
    import (
        "fmt"
    )
    
    func main() {
        var fnCnt C.int = 2
        var i C.int
        for i = 0; i < fnCnt; i++ {
            op := C.math_fp(C.math_operators[i])
            fmt.Printf("Result: %d
    ", C.do_math(op, 1, 2))
        }
    }
    

    Return expected result

    $ go run src/test.go 
    Result: 3  
    Result: -1
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题