Golang C绑定类型设计

时间:2018-12-29 10:07:33

标签: c go binding shared-libraries wrapper

type Foobar C.struct_foobar

vs。

type Foobar struct {
    foobar C.struct_foobar
}

哪个人(为C编写Golang绑定)有哪些(不利)优势?

1 个答案:

答案 0 :(得分:0)

第二个示例清楚地显示了其他包无法访问的数据结构。

对于第一个,这是不可能的。