本文整理汇总了Java中gnu.trove.map.TIntLongMap.get方法的典型用法代码示例。如果您正苦于以下问题:Java TIntLongMap.get方法的具体用法?Java TIntLongMap.get怎么用?Java TIntLongMap.get使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gnu.trove.map.TIntLongMap
的用法示例。
在下文中一共展示了TIntLongMap.get方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: equals
import gnu.trove.map.TIntLongMap; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override
public boolean equals( Object other ) {
if ( ! ( other instanceof TIntLongMap ) ) {
return false;
}
TIntLongMap that = ( TIntLongMap ) other;
if ( that.size() != this.size() ) {
return false;
}
long[] values = _values;
byte[] states = _states;
long this_no_entry_value = getNoEntryValue();
long that_no_entry_value = that.getNoEntryValue();
for ( int i = values.length; i-- > 0; ) {
if ( states[i] == FULL ) {
int key = _set[i];
long that_value = that.get( key );
long 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;
}
示例2: equals
import gnu.trove.map.TIntLongMap; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override
public boolean equals( Object other ) {
if ( ! ( other instanceof TIntLongMap ) ) {
return false;
}
TIntLongMap that = ( TIntLongMap ) other;
if ( that.size() != this.size() ) {
return false;
}
TLongOffheapArray values = _values;
TByteOffheapArray states = _states;
long this_no_entry_value = getNoEntryValue();
long that_no_entry_value = that.getNoEntryValue();
for ( int i = capacity(); i-- > 0; ) {
if ( states.get( i ) == FULL ) {
int key = _set.get( i );
long that_value = that.get( key );
long 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;
}
示例3: encode64Bit
import gnu.trove.map.TIntLongMap; //导入方法依赖的package包/类
private static mt_64bit encode64Bit(TIntLongMap t_64bit, int timestampsSize) {
LOG.log(Level.FINEST, "encoding {0}", TDecorators.wrap(t_64bit));
long[] values = new long[timestampsSize];
int values_len = 0;
for (int i = 0; i < values.length; ++i) {
if (t_64bit.containsKey(i))
values[values_len++] = t_64bit.get(i);
}
mt_64bit result = new mt_64bit();
result.presence = createPresenceBitset(t_64bit.keySet(), timestampsSize);
result.values = Arrays.copyOf(values, values_len);
return result;
}