本文整理匯總了Java中gnu.trove.map.TObjectIntMap.size方法的典型用法代碼示例。如果您正苦於以下問題:Java TObjectIntMap.size方法的具體用法?Java TObjectIntMap.size怎麽用?Java TObjectIntMap.size使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類gnu.trove.map.TObjectIntMap
的用法示例。
在下文中一共展示了TObjectIntMap.size方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: TObjectIntCustomHashMap
import gnu.trove.map.TObjectIntMap; //導入方法依賴的package包/類
/**
* Creates a new <code>TObjectIntCustomHashMap</code> that contains the entries
* in the map passed to it.
*
* @param map the <tt>TObjectIntMap</tt> to be copied.
*/
public TObjectIntCustomHashMap( HashingStrategy<? super K> strategy,
TObjectIntMap<? extends K> map ) {
this( strategy, map.size(), 0.5f, map.getNoEntryValue() );
if ( map instanceof TObjectIntCustomHashMap ) {
TObjectIntCustomHashMap hashmap = ( TObjectIntCustomHashMap ) map;
this._loadFactor = hashmap._loadFactor;
this.no_entry_value = hashmap.no_entry_value;
this.strategy = hashmap.strategy;
//noinspection RedundantCast
if ( this.no_entry_value != ( int ) 0 ) {
Arrays.fill( _values, this.no_entry_value );
}
setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) );
}
putAll( map );
}
示例2: TObjectIntHashMap
import gnu.trove.map.TObjectIntMap; //導入方法依賴的package包/類
/**
* Creates a new <code>TObjectIntHashMap</code> that contains the entries
* in the map passed to it.
*
* @param map the <tt>TObjectIntMap</tt> to be copied.
*/
@SuppressWarnings("rawtypes")
public TObjectIntHashMap( TObjectIntMap<? extends K> map ) {
this( map.size(), 0.5f, map.getNoEntryValue() );
if ( map instanceof TObjectIntHashMap ) {
TObjectIntHashMap hashmap = ( TObjectIntHashMap ) map;
this._loadFactor = hashmap._loadFactor;
this.no_entry_value = hashmap.no_entry_value;
//noinspection RedundantCast
if ( this.no_entry_value != ( int ) 0 ) {
Arrays.fill( _values, this.no_entry_value );
}
setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) );
}
putAll( map );
}
示例3: TObjectIntCustomHashMap
import gnu.trove.map.TObjectIntMap; //導入方法依賴的package包/類
/**
* Creates a new <code>TObjectIntCustomHashMap</code> that contains the entries
* in the map passed to it.
*
* @param map the <tt>TObjectIntMap</tt> to be copied.
*/
@SuppressWarnings({ "rawtypes", "unchecked" })
public TObjectIntCustomHashMap( HashingStrategy<? super K> strategy,
TObjectIntMap<? extends K> map ) {
this( strategy, map.size(), 0.5f, map.getNoEntryValue() );
if ( map instanceof TObjectIntCustomHashMap ) {
TObjectIntCustomHashMap hashmap = ( TObjectIntCustomHashMap ) map;
this._loadFactor = hashmap._loadFactor;
this.no_entry_value = hashmap.no_entry_value;
this.strategy = hashmap.strategy;
//noinspection RedundantCast
if ( this.no_entry_value != ( int ) 0 ) {
Arrays.fill( _values, this.no_entry_value );
}
setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) );
}
putAll( map );
}
示例4: TObjectIntCustomHashMap
import gnu.trove.map.TObjectIntMap; //導入方法依賴的package包/類
/**
* Creates a new <code>TObjectIntCustomHashMap</code> that contains the entries
* in the map passed to it.
*
* @param map the <tt>TObjectIntMap</tt> to be copied.
*/
public TObjectIntCustomHashMap( HashingStrategy<K> strategy, TObjectIntMap<K> map ) {
this( strategy, map.size(), 0.5f, map.getNoEntryValue() );
if ( map instanceof TObjectIntCustomHashMap ) {
TObjectIntCustomHashMap hashmap = ( TObjectIntCustomHashMap ) map;
this._loadFactor = hashmap._loadFactor;
this.no_entry_value = hashmap.no_entry_value;
this.strategy = hashmap.strategy;
//noinspection RedundantCast
if ( this.no_entry_value != ( int ) 0 ) {
Arrays.fill( _values, this.no_entry_value );
}
setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) );
}
putAll( map );
}
示例5: testIteratorRemoval2
import gnu.trove.map.TObjectIntMap; //導入方法依賴的package包/類
public void testIteratorRemoval2() {
int element_count = 10000;
int remaining = element_count / 2;
TObjectIntMap<String> map = withExpectedSizeAndNoEntryValue( element_count, Integer.MIN_VALUE );
for ( int pass = 0; pass < 10; pass++ ) {
Random r = new Random();
for ( int i = 0; i <= element_count; i++ ) {
map.put( String.valueOf( r.nextInt() ), i );
}
TObjectIntIterator iterator = map.iterator();
while ( map.size() > remaining && iterator.hasNext() ) {
iterator.advance();
iterator.remove();
}
}
}
示例6: TObjectIntHashMap
import gnu.trove.map.TObjectIntMap; //導入方法依賴的package包/類
/**
* Creates a new <code>TObjectIntHashMap</code> that contains the entries
* in the map passed to it.
*
* @param map the <tt>TObjectIntMap</tt> to be copied.
*/
public TObjectIntHashMap( TObjectIntMap<? extends K> map ) {
this( map.size(), 0.5f, map.getNoEntryValue() );
if ( map instanceof TObjectIntHashMap ) {
TObjectIntHashMap hashmap = ( TObjectIntHashMap ) map;
this._loadFactor = hashmap._loadFactor;
this.no_entry_value = hashmap.no_entry_value;
//noinspection RedundantCast
if ( this.no_entry_value != ( int ) 0 ) {
Arrays.fill( _values, this.no_entry_value );
}
setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) );
}
putAll( map );
}
示例7: equals
import gnu.trove.map.TObjectIntMap; //導入方法依賴的package包/類
/**
* Compares this map with another map for equality of their stored
* entries.
*
* @param other an <code>Object</code> value
* @return a <code>boolean</code> value
*/
public boolean equals( Object other ) {
if ( ! ( other instanceof TObjectIntMap ) ) {
return false;
}
TObjectIntMap that = ( TObjectIntMap ) other;
if ( that.size() != this.size() ) {
return false;
}
try {
TObjectIntIterator iter = this.iterator();
while ( iter.hasNext() ) {
iter.advance();
Object key = iter.key();
int value = iter.value();
if ( value == no_entry_value ) {
if ( !( that.get( key ) == that.getNoEntryValue() &&
that.containsKey( key ) ) ) {
return false;
}
} else {
if ( value != that.get( key ) ) {
return false;
}
}
}
} catch ( ClassCastException ex ) {
// unused.
}
return true;
}
示例8: equals
import gnu.trove.map.TObjectIntMap; //導入方法依賴的package包/類
/**
* Compares this map with another map for equality of their stored
* entries.
*
* @param other an <code>Object</code> value
* @return a <code>boolean</code> value
*/
@Override
@SuppressWarnings("rawtypes")
public boolean equals( Object other ) {
if ( ! ( other instanceof TObjectIntMap ) ) {
return false;
}
TObjectIntMap that = ( TObjectIntMap ) other;
if ( that.size() != this.size() ) {
return false;
}
try {
TObjectIntIterator iter = this.iterator();
while ( iter.hasNext() ) {
iter.advance();
Object key = iter.key();
int value = iter.value();
if ( value == no_entry_value ) {
if ( !( that.get( key ) == that.getNoEntryValue() &&
that.containsKey( key ) ) ) {
return false;
}
} else {
if ( value != that.get( key ) ) {
return false;
}
}
}
} catch ( ClassCastException ex ) {
// unused.
}
return true;
}
示例9: TObjectIntHashMap
import gnu.trove.map.TObjectIntMap; //導入方法依賴的package包/類
/**
* Creates a new <code>TObjectIntHashMap</code> that contains the entries
* in the map passed to it.
*
* @param map the <tt>TObjectIntMap</tt> to be copied.
*/
public TObjectIntHashMap( TObjectIntMap<K> map ) {
this( map.size(), 0.5f, map.getNoEntryValue() );
if ( map instanceof TObjectIntHashMap ) {
TObjectIntHashMap hashmap = ( TObjectIntHashMap ) map;
this._loadFactor = hashmap._loadFactor;
this.no_entry_value = hashmap.no_entry_value;
//noinspection RedundantCast
if ( this.no_entry_value != ( int ) 0 ) {
Arrays.fill( _values, this.no_entry_value );
}
setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) );
}
putAll( map );
}
示例10: equals
import gnu.trove.map.TObjectIntMap; //導入方法依賴的package包/類
/**
* Compares this map with another map for equality of their stored
* entries.
*
* @param other an <code>Object</code> value
* @return a <code>boolean</code> value
*/
public boolean equals( Object other ) {
if ( ! ( other instanceof TObjectIntMap ) ) {
return false;
}
TObjectIntMap that = ( TObjectIntMap ) other;
if ( that.size() != this.size() ) {
return false;
}
try {
TObjectIntIterator iter = this.iterator();
while ( iter.hasNext() ) {
iter.advance();
Object key = iter.key();
int value = iter.value();
if ( value == no_entry_value ) {
if ( !( that.get( key ) == that.getNoEntryValue() && that.containsKey( key ) ) ) {
return false;
}
} else {
if ( value != that.get( key ) ) {
return false;
}
}
}
} catch ( ClassCastException ex ) {
// unused.
}
return true;
}