当前位置: 首页>>代码示例>>Java>>正文


Java TObjectCharMap类代码示例

本文整理汇总了Java中gnu.trove.map.TObjectCharMap的典型用法代码示例。如果您正苦于以下问题:Java TObjectCharMap类的具体用法?Java TObjectCharMap怎么用?Java TObjectCharMap使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


TObjectCharMap类属于gnu.trove.map包,在下文中一共展示了TObjectCharMap类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: TObjectCharCustomHashMap

import gnu.trove.map.TObjectCharMap; //导入依赖的package包/类
/**
   * Creates a new <code>TObjectCharCustomHashMap</code> that contains the entries
   * in the map passed to it.
   *
   * @param map the <tt>TObjectCharMap</tt> to be copied.
   */
  public TObjectCharCustomHashMap( HashingStrategy<? super K> strategy,
TObjectCharMap<? extends K> map ) {
	
      this( strategy, map.size(), 0.5f, map.getNoEntryValue() );

      if ( map instanceof TObjectCharCustomHashMap ) {
          TObjectCharCustomHashMap hashmap = ( TObjectCharCustomHashMap ) map;
          this._loadFactor = hashmap._loadFactor;
          this.no_entry_value = hashmap.no_entry_value;
          this.strategy = hashmap.strategy;
          //noinspection RedundantCast
          if ( this.no_entry_value != ( char ) 0 ) {
              Arrays.fill( _values, this.no_entry_value );
          }
          setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) );
      }
      putAll( map );
  }
 
开发者ID:JianpingZeng,项目名称:xcc,代码行数:25,代码来源:TObjectCharCustomHashMap.java

示例2: TObjectCharHashMap

import gnu.trove.map.TObjectCharMap; //导入依赖的package包/类
/**
 * Creates a new <code>TObjectCharHashMap</code> that contains the entries
 * in the map passed to it.
 *
 * @param map the <tt>TObjectCharMap</tt> to be copied.
 */
@SuppressWarnings("rawtypes")
public TObjectCharHashMap( TObjectCharMap<? extends K> map ) {
    this( map.size(), 0.5f, map.getNoEntryValue() );
    if ( map instanceof TObjectCharHashMap ) {
        TObjectCharHashMap hashmap = ( TObjectCharHashMap ) map;
        this._loadFactor = hashmap._loadFactor;
        this.no_entry_value = hashmap.no_entry_value;
        //noinspection RedundantCast
        if ( this.no_entry_value != ( char ) 0 ) {
            Arrays.fill( _values, this.no_entry_value );
        }
        setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) );
    }
    putAll( map );
}
 
开发者ID:palantir,项目名称:trove-3.0.3,代码行数:22,代码来源:TObjectCharHashMap.java

示例3: TObjectCharCustomHashMap

import gnu.trove.map.TObjectCharMap; //导入依赖的package包/类
/**
   * Creates a new <code>TObjectCharCustomHashMap</code> that contains the entries
   * in the map passed to it.
   *
   * @param map the <tt>TObjectCharMap</tt> to be copied.
   */
  @SuppressWarnings({ "rawtypes", "unchecked" })
  public TObjectCharCustomHashMap( HashingStrategy<? super K> strategy,
TObjectCharMap<? extends K> map ) {
	
      this( strategy, map.size(), 0.5f, map.getNoEntryValue() );

      if ( map instanceof TObjectCharCustomHashMap ) {
          TObjectCharCustomHashMap hashmap = ( TObjectCharCustomHashMap ) map;
          this._loadFactor = hashmap._loadFactor;
          this.no_entry_value = hashmap.no_entry_value;
          this.strategy = hashmap.strategy;
          //noinspection RedundantCast
          if ( this.no_entry_value != ( char ) 0 ) {
              Arrays.fill( _values, this.no_entry_value );
          }
          setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) );
      }
      putAll( map );
  }
 
开发者ID:palantir,项目名称:trove-3.0.3,代码行数:26,代码来源:TObjectCharCustomHashMap.java

示例4: TObjectCharCustomHashMap

import gnu.trove.map.TObjectCharMap; //导入依赖的package包/类
/**
 * Creates a new <code>TObjectCharCustomHashMap</code> that contains the entries
 * in the map passed to it.
 *
 * @param map the <tt>TObjectCharMap</tt> to be copied.
 */
public TObjectCharCustomHashMap( HashingStrategy<K> strategy, TObjectCharMap<K> map ) {
    this( strategy, map.size(), 0.5f, map.getNoEntryValue() );

    if ( map instanceof TObjectCharCustomHashMap ) {
        TObjectCharCustomHashMap hashmap = ( TObjectCharCustomHashMap ) map;
        this._loadFactor = hashmap._loadFactor;
        this.no_entry_value = hashmap.no_entry_value;
        this.strategy = hashmap.strategy;
        //noinspection RedundantCast
        if ( this.no_entry_value != ( char ) 0 ) {
            Arrays.fill( _values, this.no_entry_value );
        }
        setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) );
    }
    putAll( map );
}
 
开发者ID:major2015,项目名称:easyrec_major,代码行数:23,代码来源:TObjectCharCustomHashMap.java

示例5: TObjectCharHashMap

import gnu.trove.map.TObjectCharMap; //导入依赖的package包/类
/**
 * Creates a new <code>TObjectCharHashMap</code> that contains the entries
 * in the map passed to it.
 *
 * @param map the <tt>TObjectCharMap</tt> to be copied.
 */
public TObjectCharHashMap( TObjectCharMap<? extends K> map ) {
    this( map.size(), 0.5f, map.getNoEntryValue() );
    if ( map instanceof TObjectCharHashMap ) {
        TObjectCharHashMap hashmap = ( TObjectCharHashMap ) map;
        this._loadFactor = hashmap._loadFactor;
        this.no_entry_value = hashmap.no_entry_value;
        //noinspection RedundantCast
        if ( this.no_entry_value != ( char ) 0 ) {
            Arrays.fill( _values, this.no_entry_value );
        }
        setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) );
    }
    putAll( map );
}
 
开发者ID:JianpingZeng,项目名称:xcc,代码行数:21,代码来源:TObjectCharHashMap.java

示例6: equals

import gnu.trove.map.TObjectCharMap; //导入依赖的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 TObjectCharMap ) ) {
        return false;
    }
    TObjectCharMap that = ( TObjectCharMap ) other;
    if ( that.size() != this.size() ) {
        return false;
    }
    try {
        TObjectCharIterator iter = this.iterator();
        while ( iter.hasNext() ) {
            iter.advance();
            Object key = iter.key();
            char 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,代码来源:TObjectCharHashMap.java

示例7: readExternal

import gnu.trove.map.TObjectCharMap; //导入依赖的package包/类
public void readExternal(ObjectInput in)
    throws IOException, ClassNotFoundException {

    // VERSION
    in.readByte();

    // MAP
    //noinspection unchecked
    _map = ( TObjectCharMap<K> ) in.readObject();
}
 
开发者ID:JianpingZeng,项目名称:xcc,代码行数:11,代码来源:TObjectCharMapDecorator.java

示例8: equals

import gnu.trove.map.TObjectCharMap; //导入依赖的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 TObjectCharMap ) ) {
        return false;
    }
    TObjectCharMap that = ( TObjectCharMap ) other;
    if ( that.size() != this.size() ) {
        return false;
    }
    try {
        TObjectCharIterator iter = this.iterator();
        while ( iter.hasNext() ) {
            iter.advance();
            Object key = iter.key();
            char 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,代码来源:TObjectCharHashMap.java

示例9: readExternal

import gnu.trove.map.TObjectCharMap; //导入依赖的package包/类
@Override
public void readExternal(ObjectInput in)
    throws IOException, ClassNotFoundException {

    // VERSION
    in.readByte();

    // MAP
    //noinspection unchecked
    _map = ( TObjectCharMap<K> ) in.readObject();
}
 
开发者ID:palantir,项目名称:trove-3.0.3,代码行数:12,代码来源:TObjectCharMapDecorator.java

示例10: TObjectCharHashMap

import gnu.trove.map.TObjectCharMap; //导入依赖的package包/类
/**
 * Creates a new <code>TObjectCharHashMap</code> that contains the entries
 * in the map passed to it.
 *
 * @param map the <tt>TObjectCharMap</tt> to be copied.
 */
public TObjectCharHashMap( TObjectCharMap<K> map ) {
    this( map.size(), 0.5f, map.getNoEntryValue() );
    if ( map instanceof TObjectCharHashMap ) {
        TObjectCharHashMap hashmap = ( TObjectCharHashMap ) map;
        this._loadFactor = hashmap._loadFactor;
        this.no_entry_value = hashmap.no_entry_value;
        //noinspection RedundantCast
        if ( this.no_entry_value != ( char ) 0 ) {
            Arrays.fill( _values, this.no_entry_value );
        }
        setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) );
    }
    putAll( map );
}
 
开发者ID:major2015,项目名称:easyrec_major,代码行数:21,代码来源:TObjectCharHashMap.java

示例11: equals

import gnu.trove.map.TObjectCharMap; //导入依赖的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 TObjectCharMap ) ) {
        return false;
    }
    TObjectCharMap that = ( TObjectCharMap ) other;
    if ( that.size() != this.size() ) {
        return false;
    }
    try {
        TObjectCharIterator iter = this.iterator();
        while ( iter.hasNext() ) {
            iter.advance();
            Object key = iter.key();
            char 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,代码来源:TObjectCharHashMap.java

示例12: equals

import gnu.trove.map.TObjectCharMap; //导入依赖的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 TObjectCharMap ) ) {
        return false;
    }
    TObjectCharMap that = ( TObjectCharMap ) other;
    if ( that.size() != this.size() ) {
        return false;
    }
    try {
        TObjectCharIterator iter = this.iterator();
        while ( iter.hasNext() ) {
            iter.advance();
            Object key = iter.key();
            char 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.
        logger.warn("An error occurred!", ex);
    }
    return true;
}
 
开发者ID:major2015,项目名称:easyrec_major,代码行数:38,代码来源:TObjectCharCustomHashMap.java


注:本文中的gnu.trove.map.TObjectCharMap类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。