go cgo

robert198837 · · 2772 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

参考:https://golang.org/cmd/cgo/

     cgo 可以在go中调用c语言的函数,实例如下,实例代码见 https://github.com/robertzhai/go/tree/master/go_programming_study/src/cgo

1. cprint.go

package main

/*
#include <stdio.h> 
#include <stdlib.h>
*/
import "C"
import (
   "unsafe"
)

func main() {
   cstr := C.CString("Hello cgo")
   C.puts(cstr)
   C.free(unsafe.Pointer(cstr))
}

import "C" 是导入cgo的包,前面的注释是对应的c代码和include指令,需要注释

2.cfunc.go,调用c自定义函数
package main
/*
#include <stdio.h>
#include <stdlib.h>
void output(char *str) {
    printf("%s\n", str);
}
*/
import "C" //此处和上面的C代码一定不能有空行 否则会报错
import "unsafe"
func main() {
   str := "hello cgo"
   //change to char*
   cstr := C.CString(str)
   C.output(cstr)
   C.free(unsafe.Pointer(cstr))
}

3. cpointer.go  函数指针操作
package main

import "fmt"

/*
#include<math.h>
typedef int (*intFunc) ();

 int proxy_int_func(intFunc f)
 {
      return f();
 }

 int userfunc()
 {
       return 1;
 }
 */
import "C"

func main() {
   f := C.intFunc(C.userfunc)
   fmt.Println(int(C.proxy_int_func(f)))
   var n = C.sqrt(1)
   fmt.Print(n)
}

 


有疑问加站长微信联系(非本文作者)

本文来自:CSDN博客

感谢作者:robert198837

查看原文:go cgo

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

2772 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传