CGO中带有C结构的golang结构

时间:2019-01-08 23:05:56

标签: go cgo

我将使用cgo将一个c库包装为go库,以供项目使用。我阅读了文档,使用cgo时似乎有很多规则。我不知道这是否合法。

LibCtx和Client都是C中的结构。这是将C结构放入golang结构的合法方法吗?

//DBClientLib.go

type DBClient struct {
    Libctx C.LibCtx
    LibClient C.Client
}

func (client DBClient) GetEntry(key string) interface{} {

    //...
}

1 个答案:

答案 0 :(得分:0)

是的,这完全合法。看看这个简短的例子:

package main

/*
typedef struct Point {
    int x , y;
} Point;
*/
import "C"
import "fmt"

type CPoint struct {
    Point C.Point
}

func main() {
    point := CPoint{Point: C.Point{x: 1, y: 2}}
    fmt.Printf("%+v", point)
}

输出

{Point:{x:1 y:2}}