参考代码.h
上传用户:may_xy
上传日期:2007-08-09
资源大小:1519k
文件大小:1k
源码类别:

游戏

开发平台:

C/C++

  1. //const int Spade = 0;  //黑桃;
  2. //const int Hearts = 1;  //红桃;
  3. //const int Club = 2;  //梅花;
  4. //const int Diamonds = 3;  //方块;
  5. pClient,pServer分别为派生自CSocket类指针;
  6. 有结构:
  7. CInfo
  8. {
  9. public:
  10.   int m_Num;
  11.   CString m_Name;
  12. };
  13. 进程1:(发送方)
  14. CInfo info;
  15. info.m_Num = 1;
  16. info.m_Name = "lin";
  17. pClient->Send(&info,sizeof(CInfo),0);
  18. 进程2:(接收方)
  19. CInfo _info
  20. pServer->Receive(&_info,sizeof(CPlayer_Info),0);
  21. 发送,接收都没有问题,但在接收方出现一个问题:
  22. _info.m_Num = 1;   //这个数据正确;
  23. _info.m_Name = "";  //为空,而不是"lin",为什么?
  24. 请高手指教,跪求!