英文: Golang: How to correctly parse UTF-8 string from C 问题 我是一个对Go语言不太熟悉的新手,所以这可能很明显。 我有一个Go函数,我正在使用g...
在现有的C项目中使用Go代码
英文: Using Go code in an existing C project 问题 自从Go 1.5发布以来,我开始重新审视如何将其集成到我的一个现有项目中。 该项目的代码库完全使用C语言编写...
Go 1.5+:错误 – 在不使用cgo或SWIG时,不允许导入C源文件。
英文: Go 1.5+ : Error - imports runtime: C source files not allowed when not using cgo or SWIG 问题 我的程序...
如何解决函数调用中指针值的变化?这是一个cgo的错误吗?
英文: How to resolve changing pointer value in function call? Is this a cgo bug? 问题 我正在通过cgo调用一个C函数,代码...
How to use C library in Golang(v1.3.2)
英文: How to use C library in Golang(v1.3.2) 问题 这是我的Go源代码: package facerec /* #include "libs/facer...
当使用libiconv库和iconv二进制文件时,为什么会得到不同的结果?
英文: Why do I get different results when using libiconv over iconv binary? 问题 这是我使用UCS-2编码的示例字符串: abv...
Array of structure equivalent in golang
英文: Array of structure equivalent in golang 问题 我正在寻找与结构体数组等效的内容,或者与以下Go语言代码等效的内容: type myStruct stru...
将字节数组从Go传递到CGO
英文: passing a byte array from go to cgo 问题 我有以下的C代码: uint32_t cHash32(const char *s, size_t len) { r...
Use a GoString in C
英文: Use a GoString in C 问题 我正在尝试使用cgo在C程序中使用一些Go代码。 我的Go文件如下所示: package hello import ( "C" )...
使用Go 1.5的buildmode=c-archive,将net/http.Server与C链接。
英文: Using Go 1.5 buildmode=c-archive with net/http.Server linked from C 问题 Go 1.5的即将发布将带来新的构建模式,允许将G...
146