【发布时间】:2018-11-13 10:18:47
【问题描述】:
我在一个项目中使用 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);
}
现在的问题是我正在实例化类,并再次获得对 vtable 的未定义引用。
我知道当没有为虚函数定义声明时,会出现此错误。问题是只要我不实例化对象,它似乎编译得很好。
ElasticFSThriftClient elasticFsClient("localhost", 9090);
【问题讨论】: