本文整理匯總了Java中gnu.trove.map.TObjectIntMap.getNoEntryValue方法的典型用法代碼示例。如果您正苦於以下問題:Java TObjectIntMap.getNoEntryValue方法的具體用法?Java TObjectIntMap.getNoEntryValue怎麽用?Java TObjectIntMap.getNoEntryValue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類gnu.trove.map.TObjectIntMap
的用法示例。
在下文中一共展示了TObjectIntMap.getNoEntryValue方法的11個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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: 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 );
}
示例6: 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;
}
示例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
*/
@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;
}
示例8: 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 );
}
示例9: 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;
}
示例10: testEquals
import gnu.trove.map.TObjectIntMap; //導入方法依賴的package包/類
public void testEquals() {
int element_count = 20;
String[] keys = new String[element_count];
int[] vals = new int[element_count];
TObjectIntMap<String> map =
new TObjectIntHashMap<String>( element_count, 0.5f, Integer.MIN_VALUE );
for ( int i = 0; i < element_count; i++ ) {
keys[i] = Integer.toString( i + 1 );
vals[i] = i + 1;
map.put( keys[i], vals[i] );
}
assertEquals( element_count, map.size() );
TObjectIntHashMap<String> fully_specified =
new TObjectIntHashMap<String>( 20, 0.75f, Integer.MIN_VALUE );
for ( int i = 0; i < element_count; i++ ) {
fully_specified.put( keys[i], vals[i] );
}
assertEquals( map, fully_specified );
assertFalse( "shouldn't equal random object", map.equals( new Object() ) );
int value = 11010110; // I thought I saw a two!
assertEquals( map.getNoEntryValue(), map.put( null, value ) );
assertEquals( map.getNoEntryValue(), fully_specified.put( null, value ) );
assertEquals( value, map.get( null ) );
assertEquals( value, fully_specified.get( null ) );
assertTrue( "incorrectly not-equal map: " + map + "\nfully_specified: " + fully_specified,
map.equals( fully_specified ) );
assertTrue( "incorrectly not-equal map: " + map + "\nfully_specified: " + fully_specified,
fully_specified.equals( map ) );
assertEquals( map.getNoEntryValue(), fully_specified.put( "non-null-key", value ) );
assertFalse( "incorrectly equal map: " + map + "\nfully_specified: " + fully_specified,
map.equals( fully_specified ) );
assertFalse( "incorrectly equal map: " + map + "\nfully_specified: " + fully_specified,
fully_specified.equals( map ) );
int no_value = map.getNoEntryValue();
assertEquals( map.getNoEntryValue(), map.put( "non-null-key", no_value ) );
assertEquals( value, fully_specified.put( "non-null-key", no_value ) );
assertTrue( "incorrectly not-equal map: " + map + "\nfully_specified: " + fully_specified,
map.equals( fully_specified ) );
assertTrue( "incorrectly not-equal map: " + map + "\nfully_specified: " + fully_specified,
fully_specified.equals( map ) );
assertEquals( no_value, map.put( "non-null-key", value ) );
assertFalse( "incorrectly equal map: " + map + "\nfully_specified: " + fully_specified,
map.equals( fully_specified ) );
assertFalse( "incorrectly equal map: " + map + "\nfully_specified: " + fully_specified,
fully_specified.equals( map ) );
assertEquals( map.getNoEntryValue(), fully_specified.put( "blargh", value ) );
assertFalse( "incorrectly equal map: " + map + "\nfully_specified: " + fully_specified,
map.equals( fully_specified ) );
}
示例11: testEquals
import gnu.trove.map.TObjectIntMap; //導入方法依賴的package包/類
public void testEquals() {
int element_count = 20;
String[] keys = new String[element_count];
int[] vals = new int[element_count];
TObjectIntMap<String> map = withExpectedSizeAndNoEntryValue( element_count, Integer.MIN_VALUE );
for ( int i = 0; i < element_count; i++ ) {
keys[i] = Integer.toString( i + 1 );
vals[i] = i + 1;
map.put( keys[i], vals[i] );
}
assertEquals( element_count, map.size() );
TObjectIntMap<String> fully_specified = withExpectedSizeAndNoEntryValue( 20, Integer.MIN_VALUE );
for ( int i = 0; i < element_count; i++ ) {
fully_specified.put( keys[i], vals[i] );
}
assertEquals( map, fully_specified );
assertFalse( "shouldn't equal random object", map.equals( new Object() ) );
int value = 11010110; // I thought I saw a two!
assertEquals( map.getNoEntryValue(), map.put( null, value ) );
assertEquals( map.getNoEntryValue(), fully_specified.put( null, value ) );
assertEquals( value, map.get( null ) );
assertEquals( value, fully_specified.get( null ) );
assertTrue( "incorrectly not-equal map: " + map + "\nfully_specified: " + fully_specified,
map.equals( fully_specified ) );
assertTrue( "incorrectly not-equal map: " + map + "\nfully_specified: " + fully_specified,
fully_specified.equals( map ) );
assertEquals( map.getNoEntryValue(), fully_specified.put( "non-null-key", value ) );
assertFalse( "incorrectly equal map: " + map + "\nfully_specified: " + fully_specified,
map.equals( fully_specified ) );
assertFalse( "incorrectly equal map: " + map + "\nfully_specified: " + fully_specified,
fully_specified.equals( map ) );
int no_value = map.getNoEntryValue();
assertEquals( map.getNoEntryValue(), map.put( "non-null-key", no_value ) );
assertEquals( value, fully_specified.put( "non-null-key", no_value ) );
assertTrue( "incorrectly not-equal map: " + map + "\nfully_specified: " + fully_specified,
map.equals( fully_specified ) );
assertTrue( "incorrectly not-equal map: " + map + "\nfully_specified: " + fully_specified,
fully_specified.equals( map ) );
assertEquals( no_value, map.put( "non-null-key", value ) );
assertFalse( "incorrectly equal map: " + map + "\nfully_specified: " + fully_specified,
map.equals( fully_specified ) );
assertFalse( "incorrectly equal map: " + map + "\nfully_specified: " + fully_specified,
fully_specified.equals( map ) );
assertEquals( map.getNoEntryValue(), fully_specified.put( "blargh", value ) );
assertFalse( "incorrectly equal map: " + map + "\nfully_specified: " + fully_specified,
map.equals( fully_specified ) );
}