英文:
How do I call C from Go using the "foreign function interface"
问题
我如何使用Go的"外部函数接口"来调用C函数?
这个接口在FAQ中提到,但我在文档的其他地方没有看到它被提到。
英文:
How do I use Go's "foreign function interface" to call out to a C function?
This interface is mentioned on the FAQ, but I cannot see it mentioned elsewhere in the docs.
答案1
得分: 18
请查看Go仓库中的此文件。它展示了如何在Go中封装一个C库,并有很多解释该过程的注释。
英文:
Check out this file from the Go repository. It shows how to wrap a C library in Go and has quite a few comments that explain the process.
答案2
得分: 2
举个例子,这是一个Go包,提供了两个函数 -
Random
和Seed
,它们封装了C语言的rand
和srand
函数。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论