Open Aqinn opened 3 years ago
halo~我编译完之后生成了库,但测试代码无法通过编译,我刚开始使用C++,请问这是我的问题吗?
#include <iostream> #include "base/bind.h" using namespace std; void TestVoid(){ cout << "Hello, world!" << endl; } int main(){ auto f = base::Bind(&TestVoid); f.Run(); return 0; }
有加载lib/so吗?
halo~我编译完之后生成了库,但测试代码无法通过编译,我刚开始使用C++,请问这是我的问题吗?