當前位置: 首頁>>代碼示例>>Java>>正文


Java TObjectIntMap.size方法代碼示例

本文整理匯總了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 );
  }
 
開發者ID:JianpingZeng,項目名稱:xcc,代碼行數:25,代碼來源:TObjectIntCustomHashMap.java

示例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 );
}
 
開發者ID:palantir,項目名稱:trove-3.0.3,代碼行數:22,代碼來源:TObjectIntHashMap.java

示例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 );
  }
 
開發者ID:palantir,項目名稱:trove-3.0.3,代碼行數:26,代碼來源:TObjectIntCustomHashMap.java

示例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 );
}
 
開發者ID:major2015,項目名稱:easyrec_major,代碼行數:23,代碼來源:TObjectIntCustomHashMap.java

示例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();
        }
    }
}
 
開發者ID:leventov,項目名稱:trove-over-koloboke-compile,代碼行數:20,代碼來源:TObjectPrimitiveHashMapTest.java

示例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 );
}
 
開發者ID:JianpingZeng,項目名稱:xcc,代碼行數:21,代碼來源:TObjectIntHashMap.java

示例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;
}
 
開發者ID:JianpingZeng,項目名稱:xcc,代碼行數:39,代碼來源:TObjectIntHashMap.java

示例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;
}
 
開發者ID:palantir,項目名稱:trove-3.0.3,代碼行數:41,代碼來源:TObjectIntHashMap.java

示例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 );
}
 
開發者ID:major2015,項目名稱:easyrec_major,代碼行數:21,代碼來源:TObjectIntHashMap.java

示例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;
}
 
開發者ID:major2015,項目名稱:easyrec_major,代碼行數:37,代碼來源:TObjectIntHashMap.java


注:本文中的gnu.trove.map.TObjectIntMap.size方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。