c++ - 另一个 undefined reference 错误

标签 c++ oop

我正在愉快地编码,以为一切都很好,直到..

libtool: link: g++ -g -O2 -o bbcp bbcp-main.o bbcp-server.o bbcp-client.o bbcp-client_manager.o bbcp-bbcp.pb.o -pthread  -lconfig++ /usr/lib/libprotobuf.so -lz -lpthread -lglog -L/usr/lib -lboost_thread-mt -lboost_system -pthread
bbcp-client_manager.o: In function `BBCP::Server::ClientManager::send_message(boost::shared_ptr<BBCP::Server::Client>, BBCP::Protocol::Message const&)':
/home/eax/BBCP/src/client_manager.cpp:63: undefined reference to `void BBCP::Server::Client::sendPacket<BBCP::Protocol::Message>(BBCP::Protocol::PacketType, BBCP::Protocol::Message const&)'
collect2: ld returned 1 exit status

这个不太开心的错误让我一头雾水......

client_manager.cpp:

void BBCP::Server::ClientManager::send_message(BBCP::Server::client_ptr client, BBCP::Protocol::Message const &message) {
    google::protobuf::RepeatedPtrField<BBCP::Protocol::Destination> destinations = message.destination();
    BBCP::Protocol::Destination *tmp;
    BBCP::Protocol::Message msg = message;
    std::string tmp_nickname;
    client_ptr tmp_target;
    int x;

    if (!msg.has_sender() || msg.destination_size() == 0) {
        return;
    }

    for (x = 0; x < msg.destination_size(); ++x) {
        tmp_nickname = (destinations.Get(x)).nickname();

        if ((tmp_target = get_nickname(tmp_nickname))) {
            msg.clear_destination();
            tmp = msg.add_destination();
            tmp->set_nickname(tmp_nickname);

            tmp_target->sendPacket<BBCP::Protocol::Message>(BBCP::Protocol::SINGLE_MESSAGE, msg); // this is the line of the error
        }
        else {
            client->sendError(BBCP::Protocol::DESTINATION_UNKNOWN, tmp_nickname);
        }
    }

    return;
}

client_ptr等于 boost::shared_ptr<BBCP::Server::Client> .

然后我们有client.cpp:

template<class T>
void BBCP::Server::Client::sendPacket(enum BBCP::Protocol::PacketType type, T const &packet) {
    std::vector<unsigned char> pbuffer;
    BBCP::Protocol::Header header;

    header.set_type(type);
    header.set_length(packet.ByteSize());
    pbuffer.resize(BBCP_HDR_MSG_SIZE + packet.ByteSize());

    if (!header.SerializeToArray(&pbuffer[0], BBCP_HDR_MSG_SIZE)) {
        LOG(ERROR) << "Header of type " << type << " and length " << packet.ByteSize() << " failed to serialize to array. Send aborted.";
    }
    else if (!packet.SerializeToArray(&pbuffer[BBCP_HDR_MSG_SIZE], packet.ByteSize())) {
        LOG(ERROR) << "Packet of type " << type << " and length " << packet.ByteSize() << " failed to serialize to array. Send aborted.";
    }
    else {
        boost::asio::async_write(*socket, boost::asio::buffer(&pbuffer[0], pbuffer.size()), boost::bind(&BBCP::Server::Client::sendPacketWriteHandler, this, boost::asio::placeholders::error, boost::asio::placeholders::bytes_transferred));
    }

   return;
}

此函数在BBCP::Server::Client 中的定义方式相同作为公共(public)成员。

一如既往,我们将不胜感激。

朱利安。

最佳答案

只要您在相应的源文件中显式实例化模板,就可以在 C++ 源代码中定义 [member] 函数模板。仅在源中定义成员函数模板并在不同的源中使用是行不通的。你可以尝试在成员函数模板的定义之后添加这样的东西:

template void BBCP::Server::Client::sendPacket<BBCP::Protocol::Message>(
    BBCP::Protocol::PacketType, BBCP::Protocol::Message const &packet);

当然,这假定 BBCP::Protocol::Message 已在此时定义。

关于c++ - 另一个 undefined reference 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9042304/

相关文章:

c++ - 返回值存储在哪里?

c++ - MIDI 音符计数程序产生不正确的结果

c++ - 在 C++ 中明智地初始化 char 数组?

c++ - 阵列衰减和修改

r - R中的method_missing等价物

oop - 如何动态生成用于特征的值?

c++ - 运算符重载示例不清楚

c++ - 如何在 Microsoft Visual Studio 中加载 .xml 文件

oop - 哪个应该继承哪个?

matlab - 验证属性是 MATLAB 中抽象类的子类