本文整理匯總了C#中System.Int32.clear方法的典型用法代碼示例。如果您正苦於以下問題:C# Int32.clear方法的具體用法?C# Int32.clear怎麽用?C# Int32.clear使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Int32
的用法示例。
在下文中一共展示了Int32.clear方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: selectEx
public int selectEx(ref UDTSOCKET[] fds, ref UDTSOCKET[] readfds, ref UDTSOCKET[] writefds, ref UDTSOCKET[] exceptfds, Int64 msTimeOut)
{
Int64 entertime = CClock.getTime();
Int64 to;
if (msTimeOut >= 0)
to = msTimeOut * 1000;
else
to = 0xFFFFFFFFFFFFFFFF;
// initialize results
int count = 0;
if (null != readfds)
readfds.clear();
if (null != writefds)
writefds.clear();
if (null != exceptfds)
exceptfds.clear();
do
{
//for (vector<UDTSOCKET>::const_iterator i = fds.begin(); i != fds.end(); ++ i)
foreach (UDTSOCKET i in fds)
{
UdtSocket s = locate(i);
if ((null == s) || s.m_pUDT.m_bBroken || (s.m_Status == UDTSTATUS.CLOSED))
{
if (null != exceptfds)
{
exceptfds.push_back(i);
++count;
}
continue;
}
if (null != readfds)
{
if ((s.m_pUDT.m_bConnected && (s.m_pUDT.m_pRcvBuffer.getRcvDataSize() > 0) && ((s.m_pUDT.m_iSockType == UDT_STREAM) || (s.m_pUDT.m_pRcvBuffer.getRcvMsgNum() > 0)))
|| (s.m_pUDT.m_bListening && (s.m_pQueuedSockets.size() > 0)))
{
readfds.push_back(s.m_SocketID);
++count;
}
}
if (null != writefds)
{
if (s.m_pUDT.m_bConnected && (s.m_pUDT.m_pSndBuffer.getCurrBufSize() < s.m_pUDT.m_iSndBufSize))
{
writefds.push_back(s.m_SocketID);
++count;
}
}
}
if (count > 0)
break;
CClock.waitForEvent();
} while (to > CClock.getTime() - entertime);
return count;
}