英文: Calling a Go callback function from C++ through SWIG 问题 我正在尝试从Go代码中调用C++函数: void TestFunc(void(*...
如何调用一个返回类型为char*或string的由C/C++编写的DLL中导出的函数?
英文: How to invoke an exported function from DLL written in C/C++ which return type is char* or strin...
D语言适合用于编写追踪即时编译器吗?
英文: Suitability of D for writing a Tracing JIT Compiler? 问题 我想为我设计的编程语言编写一个解释器和追踪JIT。我已经有多年的C++编程经验,...
我可以在cgo中使用C++吗?
英文: Can I use c++ in cgo? 问题 在cgo中是否可以混合一些C++代码? 我尝试了这个: package main /* #include <iostream> e...
用Go + SWIG替换C++
英文: replace c++ with go + swig 问题 我最近在https://softwareengineering.stackexchange.com/questions/129076...
如何将以下的C++线程模型翻译成Go语言?
英文: How do I translate the following threading model from C++ to go? 问题 在我的C++项目中,我有一个大的、占用GB级别的二进制文...
C++库实现Go的goroutines或Go的channels?
英文: C++ libraries that implement Go goroutines or Go channels? 问题 我正在处理一个中等规模的C++代码库,目前完全是单线程的。然而,现在...
寻找一个提供类似于Google Go的通道功能的C或C++库。
英文: Looking for a C or C++ library providing a functionality similar to Google Go's channels 问题 ...
断言是邪恶的吗?
英文: Is assert evil? 问题 “Go”语言的创建者们写道: >**Go不提供断言。**它们无疑很方便,但我们的经验是,程序员们将它们用作避免思考正确的错误处理和报告的支撑。正确的...
Go的多值返回语句是异常的替代品吗?
英文: Is Go's multi-value return statement an alternative to exceptions? 问题 我想让你做我的中文翻译,代码部分不要翻译, ...
226