gpt4 book ai didi

c - 如何将 Go 函数作为参数传递给 C 函数?

转载 作者:数据小太阳 更新时间:2023-10-29 03:18:34 24 4
gpt4 key购买 nike

我正在尝试将 Go 函数传递给 C 函数。

类似于:

stm := C.struct_tray_menu{
....
fn: // definition of method
....
}
C.menu_cb(stm);

并将其传递给 C 函数:

static void menu_cb(struct tray_menu *item) {
(void)item;
printf("menu: clicked on %s\n", item->text);
}

我只是想知道如何定义像 C.function 这样的东西。

最佳答案

主要问题是对 c 中 go 定义的误解。所以最终代码看起来像


//export callOnMeGo
func callOnMeGo(in int) int {
fmt.Printf("Go.callOnMeGo(): called with arg = %d\n", in)
return in+ 1
}

func main() {

C.some_c_func((C.callback_fcn)(unsafe.Pointer(C.callOnMeGo_cgo)))
//dont forget to use (funcDefinedInGO_cgo) for with postfix _cgo

...

关于c - 如何将 Go 函数作为参数传递给 C 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57376607/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com