本文整理汇总了C++中HostAddress::copy方法的典型用法代码示例。如果您正苦于以下问题:C++ HostAddress::copy方法的具体用法?C++ HostAddress::copy怎么用?C++ HostAddress::copy使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HostAddress
的用法示例。
在下文中一共展示了HostAddress::copy方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
HostAddress * HostCatcher::getHost( ) {
mLock->lock();
int numHosts = mHostVector->size();
if( numHosts == 0 ) {
mLock->unlock();
return NULL;
}
// remove random host from queue
int index = mRandSource->getRandomBoundedInt( 0, numHosts - 1 );
HostAddress *host = *( mHostVector->getElement( index ) );
mHostVector->deleteElement( index );
// add host to end of queue
mHostVector->push_back( host );
HostAddress *hostCopy = host->copy();
mLock->unlock();
return hostCopy;
}
示例2: addHost
void HostCatcher::addHost( HostAddress * inHost ) {
// convert to numerical form once and for all here
// (to avoid converting over and over in equals checks below)
HostAddress *numericalAddress = inHost->getNumericalAddress();
if( numericalAddress != NULL ) {
mLock->lock();
// make sure this host doesn't already exist in our list
char exists = false;
int numHosts = mHostVector->size();
for( int i=0; i<numHosts; i++ ) {
HostAddress *otherHost = *( mHostVector->getElement( i ) );
if( otherHost->equals( numericalAddress ) ) {
exists = true;
// jump out of loop
i = numHosts;
}
}
if( !exists ) {
mHostVector->push_back( numericalAddress->copy() );
}
while( mHostVector->size() > mMaxListSize ) {
// remove first host from queue
HostAddress *host = *( mHostVector->getElement( 0 ) );
mHostVector->deleteElement( 0 );
delete host;
}
mLock->unlock();
delete numericalAddress;
}
}