本文整理匯總了Java中gnu.trove.map.TIntObjectMap.size方法的典型用法代碼示例。如果您正苦於以下問題:Java TIntObjectMap.size方法的具體用法?Java TIntObjectMap.size怎麽用?Java TIntObjectMap.size使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類gnu.trove.map.TIntObjectMap
的用法示例。
在下文中一共展示了TIntObjectMap.size方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: equals
import gnu.trove.map.TIntObjectMap; //導入方法依賴的package包/類
/** {@inheritDoc} */
public boolean equals( Object other ) {
if ( ! ( other instanceof TIntObjectMap ) ) {
return false;
}
TIntObjectMap that = ( TIntObjectMap ) other;
if ( that.size() != this.size() ) {
return false;
}
try {
TIntObjectIterator iter = this.iterator();
while ( iter.hasNext() ) {
iter.advance();
int key = iter.key();
Object value = iter.value();
if ( value == null ) {
if ( !( that.get( key ) == null && that.containsKey( key ) ) ) {
return false;
}
} else {
if ( !value.equals( that.get( key ) ) ) {
return false;
}
}
}
} catch ( ClassCastException ex ) {
// unused.
}
return true;
}
示例2: equals
import gnu.trove.map.TIntObjectMap; //導入方法依賴的package包/類
public boolean equals( Object other ) {
if ( ! ( other instanceof TIntObjectMap ) ) {
return false;
}
TIntObjectMap that = ( TIntObjectMap ) other;
if ( that.size() != this.size() ) {
return false;
}
try {
TIntObjectIterator iter = this.iterator();
while ( iter.hasNext() ) {
iter.advance();
int key = iter.key();
Object value = iter.value();
if ( value == null ) {
if ( !( that.get( key ) == null && that.containsKey( key ) ) ) {
return false;
}
} else {
if ( !value.equals( that.get( key ) ) ) {
return false;
}
}
}
} catch ( ClassCastException ex ) {
// unused.
}
return true;
}
示例3: equals
import gnu.trove.map.TIntObjectMap; //導入方法依賴的package包/類
/** {@inheritDoc} */
@Override
@SuppressWarnings("rawtypes")
public boolean equals( Object other ) {
if ( ! ( other instanceof TIntObjectMap ) ) {
return false;
}
TIntObjectMap that = ( TIntObjectMap ) other;
if ( that.size() != this.size() ) {
return false;
}
try {
TIntObjectIterator iter = this.iterator();
while ( iter.hasNext() ) {
iter.advance();
int key = iter.key();
Object value = iter.value();
if ( value == null ) {
if ( !( that.get( key ) == null && that.containsKey( key ) ) ) {
return false;
}
} else {
if ( !value.equals( that.get( key ) ) ) {
return false;
}
}
}
} catch ( ClassCastException ex ) {
// unused.
}
return true;
}
示例4: TIntObjectHashMap
import gnu.trove.map.TIntObjectMap; //導入方法依賴的package包/類
/**
* Creates a new <code>TIntObjectHashMap</code> that contains the entries
* in the map passed to it.
*
* @param map the <tt>TIntObjectMap</tt> to be copied.
*/
public TIntObjectHashMap( TIntObjectMap<? extends V> map ) {
this( map.size(), 0.5f, map.getNoEntryKey() );
putAll( map );
}
示例5: TIntObjectHashMap
import gnu.trove.map.TIntObjectMap; //導入方法依賴的package包/類
/**
* Creates a new <code>TIntObjectHashMap</code> that contains the entries
* in the map passed to it.
*
* @param map the <tt>TIntObjectMap</tt> to be copied.
*/
public TIntObjectHashMap( TIntObjectMap<V> map ) {
this( map.size(), 0.5f, map.getNoEntryKey() );
putAll( map );
}