Apache Thrift 未定义对生成代码中 vtable 的引用

Apache Thrift undefined reference to vtable in Generated Code

我在项目中使用 Apache Thrift。我为客户生成了代码。当我尝试编译时,我得到一组类似的链接器错误:

undefined reference to `vtable for com::cybersecwise::thrift::ElasticFSServiceClient'

我在尝试使用点范围解析实现构造函数时遇到了同样的错误,但我能够通过在 hpp 文件中实现它来摆脱它。即如下代码:

ElasticFSThriftClient(const string& server, int port) {
  stdcxx::shared_ptr<TTransport> socket(new TSocket(server, port));
  stdcxx::shared_ptr<TTransport> transport(new TBufferedTransport(socket));
  stdcxx::shared_ptr<TProtocol> protocol(new TBinaryProtocol(transport));
  ElasticFSServiceClient client(protocol);
}

现在的问题是我正在实例化 class,并再次获取对 vtable 的未定义引用。

我知道当没有为虚函数定义声明时会出现此错误。问题是只要我不实例化对象,它似乎编译得很好。

ElasticFSThriftClient elasticFsClient("localhost", 9090);

其实很简单。编译项目的时候忘记添加生成的代码文件了。