您好,欢迎来电子发烧友网! ,新用户?[免费注册]

您的位置:电子发烧友网>源码下载>C/C++语言编程>

服务器控制台聊天程序实例

大小:44 人气: 2010-09-01 需要积分:3
{$username}的空间

用户级别:注册会员

贡献文章:

贡献资料:

view plaincopy to clipboardprint?
// 2009-06-28
#pragma comment(lib,"ws2_32.lib")
#include
#include
#include
using namespace std;
string strCurMsg="";
void recvProc(SOCKET sockConnect)
{
char msgRcv[100]={0};
while(true)
{
if(SOCKET_ERROR==recv(sockConnect,msgRcv,sizeof(msgRcv),0))
{
cout<<"nHe is leaving";
return;
}
if(msgRcv[0]!=’’)
{
strCurMsg.erase(strCurMsg.end()-7,strCurMsg.end());
strCurMsg+="He said: ";
strCurMsg+=msgRcv;
strCurMsg+=’n’;
strCurMsg+="input: ";
system("cls");
cout<}
}
}
int main(int argc, char* argv[])

.................

非常好我支持^.^

(1) 100%

不好我反对

(0) 0%

      发表评论

      用户评论
      评价:好评中评差评

      发表评论,获取积分! 请遵守相关规定!