onreceive(请问CSocket 类中的 OnReceive()的参数)
本文目录
请问CSocket 类中的 OnReceive()的参数
CAsyncSocket::OnReceiveCalled by the framework to notify this socket that there is data in the buffer that can be retrieved by calling the Receive member function.virtual void OnReceive( int nErrorCode );ParametersnErrorCode The most recent error on a socket. The following error codes apply to the OnReceive member function: 0 The function executed successfully. WSAENETDOWN The Windows Sockets implementation detected that the network subsystem failed. RemarksFor more information, see Windows Sockets: Socket Notifications.Examplevoid CMyAsyncSocket::OnReceive(int nErrorCode) // CMyAsyncSocket is // derived from CAsyncSocket{ static int i=0; i++; TCHAR buff; int nRead; nRead = Receive(buff, 4096); switch (nRead) { case 0: Close(); break; case SOCKET_ERROR: if (GetLastError() != WSAEWOULDBLOCK) { AfxMessageBox (“Error occurred“); Close(); } break; default: buff = 0; //terminate the string CString szTemp(buff); m_strRecv += szTemp; // m_strRecv is a CString declared // in CMyAsyncSocket if (szTemp.CompareNoCase(“bye“) == 0 ) ShutDown(); } CAsyncSocket::OnReceive(nErrorCode);}由以上可知, 这个参数是输出参数,如果函数成功接收数据,则该参数为0,否则输出为错误代码。能否讲一下什么是函数的输出参数?////////////////////////////////如果说这样的函数:void add(int & value){ value++;}int n = 5;add(n);n就变成6了。///////////////////////////////////////我看错了,呵呵,不是输出参数,因为函数原型是:virtual void OnReceive( int nErrorCode );nErrorCode是int,不是int &或者int *,所以不是输出参数。我查看了一下MSDN和CAsyncSocket的源码://///////////////////////////////////////////////////////////////////////////// CAsyncSocket Overridable callbacksvoid CAsyncSocket::OnReceive(int /*nErrorCode*/){}这个函数什么都没做。我估计当框架接收到数据到来的消息后,就调用CAsyncSocket::OnReceive,而nErrorCode这个参数也是框架自己提供的,表示当前网络的状态。程序员不用管它,只须在自己的socket类中重载该函数,并在函数体内实现自己的接收代码就可以了。
请问,关于安卓广播接收者的问题,安卓中onReceive方法中的参数context和intent
context是上下文环境,一般是说明你这个在哪个包里面进行的活动还有加载资源值也要用到,你可以先记住有这么一个东西,intent用于页面跳转可指定包名显式跳转,也可以设定参数进行隐式跳转,多用用就知道了,建议自己手打不要光看书
更多文章:

江苏福彩15选5开奖结果(福彩15选5中三个号码有没有奖啊)
2025年3月13日 00:50

act、rpg和arpg游戏之间有什么区别?什么是ACT游戏~
2025年2月28日 22:50

wordpress怎么搜索别人(如何查看别人wordpress的博客)
2025年3月24日 18:20

localhost8888的网址(在IE浏览器里面输入“http://localhost:8888/“怎么跳到百度页面)
2025年3月6日 18:40

flex使用方法(亚马逊Flex司机为何使用机器人“欺骗性地”完成更多工作)
2025年3月28日 09:50

c语言教程app软件下载(最近想学习C语言,不知道用什么软件,请大家提供个下载地址)
2025年3月13日 00:10

excel vlookup函数(excelvlookup函数怎么用)
2025年3月6日 11:10

consult的形容词(are 后面consult什么形式)
2025年3月30日 06:20

tree planting annal怎么用?annal passholder什么意思
2025年4月3日 06:50

false是1还是0(php 里面,0、1和false 、true有什么区别)
2025年3月8日 02:40