标签:style class blog code java http
结构体应用
//结构体定义如下
// test.h
struct test { int a; int b; int c; }
在golang中的调用如下:
1 package name 2 3 4 import "C" //这个是必须要包含的,如果要调用cgo 5 6 // #cgo linux CFLAGS: -l. //这个是声明查找头文件的位置 是在本目录 7 // #include "test.h" 8 9 10 func testt() { 11 var vt C.struct_test //这个是结构体的调用方法 12 .... 13 ..... 14 } 15 16 17 18
标签:style class blog code java http
原文地址:http://www.cnblogs.com/sn-dnv-aps/p/3782478.html