英文: Go language use internal structures from C 问题 我想要在Go语言中将一个主机地址(比如'www.google.be')转换为sockaddr结构,并...
如何将Go字符串数组转换为C字符串数组?
英文: How do I convert a Go array of strings to a C array of strings? 问题 我正在一个项目中使用cgo,并且想要导出一个函数供使用。以...
预编译依赖于 C 以提高速度的 Go 程序的一部分。
英文: Precompiling part of Go program that relies on C for speed 问题 我的Go程序的一部分依赖于一个非常庞大的C代码库,使用import ...
golang os *File.Readdir在所有文件上使用lstat。它可以进行优化吗?
英文: golang os *File.Readdir using lstat on all files. Can it be optimised? 问题 我正在编写一个程序,使用os.File.Re...
Golang C (.so) 在调用时出现分段错误
英文: Golang C (.so) imports segmentation violation on call 问题 你好,以下是你提供的代码的翻译: package main // #cgo L...
将C字符串转换为Go字符串而不使用CGO。
英文: Convert C string to Go string without CGO 问题 我正在使用Go Windows syscall库从DLL中的函数中获取数据。这一切都很顺利,但是我无法...
Does Go fix or share C's hazardous implicit -> unsigned conversion?
英文: Does Go fix or share C's hazardous implicit -> unsigned conversion? 问题 在《21世纪的C语言》一书中,Ben...
C/C++可以将所有动态库构建为一个二进制文件吗?
英文: Can C/C++ build all dynamic libraries into one bin file? 问题 当我在不同的操作系统上开发时,我发现在一个Linux系统上构建的程序无法...
在这里,需要使用C.GoBytes来检索C缓冲区,还是只需要一个指针就足够了?
英文: Is C.GoBytes required to retrieve a C buffer, or is a pointer sufficient here? 问题 下面的cgo代码中有一个函数...
How to read a string from a C function into Go?
英文: How to read a string from a C function into Go? 问题 我正在尝试使用cgo从Go调用一个C函数来读取错误消息。该函数生成的消息长度未知,但小于2...
146