首先先上代码,看看效果。

package main

/*
#include <stdio.h>

void sayHello(){
    printf("hello, world!");
}
*/
import "C"

func main(){
    C.sayHello()
}
exec: "gcc": executable file not found in %PATH%cgogo envset CGO_ENABLED=1import "C"import "C"
package main

/*
#include <stdio.h>

double FindMaxNum(double n1, double n2, double n3){
    double maxNum;
    if(n1>n2&&n1>=n3)
        maxNum=n1;
    if(n2>=n1&&n2>=n3)
        maxNum=n2;
    if(n3>=n1&&n3>=n2)
        maxNum=n3;
    return maxNum;
}
*/
import "C"
import "fmt"

func main(){
    n1:=C.double(1.23)
    n2:=C.double(3.45)
    n3:=C.double(6.78)
    result:=C.FindMaxNum(n1,n2,n3)
    fmt.Println(result)
}

上面示例中,由于函数FindMaxNum接收三个参数,而且这三个参数必须是C语言中的double类型,而不是Go语言中的double类型。如果上面代码未经转化,则会在编译时报错。

# command-line-arguments
.\test18.go:27: cannot use n1 (type float64) as type C.double in argument to _Cfunc_FindMaxNum
.\test18.go:27: cannot use n2 (type float64) as type C.double in argument to _Cfunc_FindMaxNum
.\test18.go:27: cannot use n3 (type float64) as type C.double in argument to _Cfunc_FindMaxNum
unsafe包
package main

/*
#include <stdio.h>
#include <stdlib.h>
void myprint(char* str){
    printf("the content is:%s\n",str);
}
*/
import "C"
import "unsafe"

func main(){
    Print("hello world!")
}

func Print(s string) {
    cs:=C.CString(s)
    defer C.free(unsafe.Pointer(cs))
    C.myprint(cs)
}

unsafe包包含一些有关Go程序类型安全的操作,来看看Pointer是如何定义的。Pointer表示任意类型的指针,它有四种可用于其他类型的特殊操作。

  • 任何类型的指针值都可以转化为Pointer
  • Pointer可以转化为任何类型的指针值
  • uintptr可以转化为Pointer
  • Pointer可以转化为uintptr

Pointer程序打破类型系统的限制,允许读写任意内存,因此应该非常小心的使用它。

参考文章:
1.go tool cgo