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


Java TIntShortMap类代码示例

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


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

示例1: TIntShortHashMap

import gnu.trove.map.TIntShortMap; //导入依赖的package包/类
/**
 * Creates a new <code>TIntShortHashMap</code> instance containing
 * all of the entries in the map passed in.
 *
 * @param map a <tt>TIntShortMap</tt> that will be duplicated.
 */
public TIntShortHashMap( TIntShortMap map ) {
    super( map.size() );
    if ( map instanceof TIntShortHashMap ) {
        TIntShortHashMap hashmap = ( TIntShortHashMap ) map;
        this._loadFactor = hashmap._loadFactor;
        this.no_entry_key = hashmap.no_entry_key;
        this.no_entry_value = hashmap.no_entry_value;
        //noinspection RedundantCast
        if ( this.no_entry_key != ( int ) 0 ) {
            Arrays.fill( _set, this.no_entry_key );
        }
        //noinspection RedundantCast
        if ( this.no_entry_value != ( short ) 0 ) {
            Arrays.fill( _values, this.no_entry_value );
        }
        setUp( (int) Math.ceil( DEFAULT_CAPACITY / _loadFactor ) );
    }
    putAll( map );
}
 
开发者ID:JianpingZeng,项目名称:xcc,代码行数:26,代码来源:TIntShortHashMap.java

示例2: putAll

import gnu.trove.map.TIntShortMap; //导入依赖的package包/类
/** {@inheritDoc} */
public void putAll( TIntShortMap map ) {
    ensureCapacity( map.size() );
    TIntShortIterator iter = map.iterator();
    while ( iter.hasNext() ) {
        iter.advance();
        this.put( iter.key(), iter.value() );
    }
}
 
开发者ID:JianpingZeng,项目名称:xcc,代码行数:10,代码来源:TIntShortHashMap.java

示例3: equals

import gnu.trove.map.TIntShortMap; //导入依赖的package包/类
/** {@inheritDoc} */
@Override
public boolean equals( Object other ) {
    if ( ! ( other instanceof TIntShortMap ) ) {
        return false;
    }
    TIntShortMap that = ( TIntShortMap ) other;
    if ( that.size() != this.size() ) {
        return false;
    }
    short[] values = _values;
    byte[] states = _states;
    short this_no_entry_value = getNoEntryValue();
    short that_no_entry_value = that.getNoEntryValue();
    for ( int i = values.length; i-- > 0; ) {
        if ( states[i] == FULL ) {
            int key = _set[i];
            short that_value = that.get( key );
            short this_value = values[i];
            if ( ( this_value != that_value ) &&
                 ( this_value != this_no_entry_value ) &&
                 ( that_value != that_no_entry_value ) ) {
                return false;
            }
        }
    }
    return true;
}
 
开发者ID:JianpingZeng,项目名称:xcc,代码行数:29,代码来源:TIntShortHashMap.java

示例4: readExternal

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

    // VERSION
    in.readByte();

    // MAP
    _map = ( TIntShortMap ) in.readObject();
}
 
开发者ID:JianpingZeng,项目名称:xcc,代码行数:10,代码来源:TIntShortMapDecorator.java

示例5: putAll

import gnu.trove.map.TIntShortMap; //导入依赖的package包/类
/** {@inheritDoc} */
@Override
public void putAll( TIntShortMap map ) {
    ensureCapacity( map.size() );
    TIntShortIterator iter = map.iterator();
    while ( iter.hasNext() ) {
        iter.advance();
        this.put( iter.key(), iter.value() );
    }
}
 
开发者ID:palantir,项目名称:trove-3.0.3,代码行数:11,代码来源:TIntShortHashMap.java

示例6: equals

import gnu.trove.map.TIntShortMap; //导入依赖的package包/类
/** {@inheritDoc} */
@Override
public boolean equals( Object other ) {
    if ( ! ( other instanceof TIntShortMap ) ) {
        return false;
    }
    TIntShortMap that = ( TIntShortMap ) other;
    if ( that.size() != this.size() ) {
        return false;
    }
    TShortOffheapArray values = _values;
    TByteOffheapArray states = _states;
    short this_no_entry_value = getNoEntryValue();
    short that_no_entry_value = that.getNoEntryValue();
    for ( int i = capacity(); i-- > 0; ) {
        if ( states.get( i ) == FULL ) {
            int key = _set.get( i );
            short that_value = that.get( key );
            short this_value = values.get( i );
            if ( ( this_value != that_value ) &&
                 ( this_value != this_no_entry_value ) &&
                 ( that_value != that_no_entry_value ) ) {
                return false;
            }
        }
    }
    return true;
}
 
开发者ID:palantir,项目名称:trove-3.0.3,代码行数:29,代码来源:TIntShortOffheapHashMap.java

示例7: readExternal

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

    // VERSION
    in.readByte();

    // MAP
    _map = ( TIntShortMap ) in.readObject();
}
 
开发者ID:palantir,项目名称:trove-3.0.3,代码行数:11,代码来源:TIntShortMapDecorator.java

示例8: encode16Bit

import gnu.trove.map.TIntShortMap; //导入依赖的package包/类
private static mt_16bit encode16Bit(TIntShortMap t_16bit, int timestampsSize) {
    LOG.log(Level.FINEST, "encoding {0}", TDecorators.wrap(t_16bit));
    short[] values = new short[timestampsSize];
    int values_len = 0;
    for (int i = 0; i < values.length; ++i) {
        if (t_16bit.containsKey(i))
            values[values_len++] = t_16bit.get(i);
    }

    mt_16bit result = new mt_16bit();
    result.presence = createPresenceBitset(t_16bit.keySet(), timestampsSize);
    result.values = Arrays.copyOf(values, values_len);

    return result;
}
 
开发者ID:groupon,项目名称:monsoon,代码行数:16,代码来源:MetricTable.java

示例9: getMap

import gnu.trove.map.TIntShortMap; //导入依赖的package包/类
public TIntShortMap getMap() {
    return container;
}
 
开发者ID:bacta,项目名称:pre-cu,代码行数:4,代码来源:AutoDeltaIntShortMap.java

示例10: TIntShortMapDecorator

import gnu.trove.map.TIntShortMap; //导入依赖的package包/类
/**
 * Creates a wrapper that decorates the specified primitive map.
 *
 * @param map the <tt>TIntShortMap</tt> to wrap.
 */
public TIntShortMapDecorator( TIntShortMap map ) {
    super();
    this._map = map;
}
 
开发者ID:JianpingZeng,项目名称:xcc,代码行数:10,代码来源:TIntShortMapDecorator.java

示例11: getMap

import gnu.trove.map.TIntShortMap; //导入依赖的package包/类
/**
 * Returns a reference to the map wrapped by this decorator.
 *
 * @return the wrapped <tt>TIntShortMap</tt> instance.
 */
public TIntShortMap getMap() {
    return _map;
}
 
开发者ID:JianpingZeng,项目名称:xcc,代码行数:9,代码来源:TIntShortMapDecorator.java


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