• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java TObjectCharMap类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了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;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java PlanarImg类代码示例发布时间:2022-05-23
下一篇:
Java DBFField类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap