我正在研究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客户端 - 服务器模型中将此数据(即此类具有)发送到服务器。 我怎么能这样做,我应该在这个类中声明一个发送数据的朋友方法,还是有其他方法?
注意:我已创建此类对象的向量。我想发送所有对象的数据