Go代码直接调用c函数
package main/*#includevoid test(){ printf("Hello C\n");}*/import "C"import "fmt"func main() { C.test() fmt.Println("Hello Go")}
调用第三方动态库:
本文共 232 字,大约阅读时间需要 1 分钟。
Go代码直接调用c函数
package main/*#includevoid test(){ printf("Hello C\n");}*/import "C"import "fmt"func main() { C.test() fmt.Println("Hello Go")}
调用第三方动态库:
转载于:https://www.cnblogs.com/fudianheg/p/10181231.html