如何将类中存在的数据传递给TCP / IP模型中的服务器?

时间:2014-01-30 14:13:50

标签: c++ linux sockets tcp-ip

我正在研究TCP / IP模型,以下是我的类声明:

class searchword
{
        std::string word;
        std::map<int,int> wordcout;
        int totalcout;
        // Some functions that processes the data and fill the above
        // data member.
};

现在我想在TCP / IP客户端 - 服务器模型中将此数据(即此类具有)发送到服务器。 我怎么能这样做,我应该在这个类中声明一个发送数据的朋友方法,还是有其他方法?

注意:我已创建此类对象的向量。我想发送所有对象的数据

0 个答案:

没有答案