本文整理汇总了Java中gnu.trove.list.TShortList.get方法的典型用法代码示例。如果您正苦于以下问题:Java TShortList.get方法的具体用法?Java TShortList.get怎么用?Java TShortList.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gnu.trove.list.TShortList
的用法示例。
在下文中一共展示了TShortList.get方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: equals
import gnu.trove.list.TShortList; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override
public boolean equals( Object other ) {
if ( other == this ) {
return true;
}
if ( !( other instanceof TShortList ) ) return false;
TShortList that = ( TShortList )other;
if ( size() != that.size() ) return false;
for( int i = 0; i < size(); i++ ) {
if ( get( i ) != that.get( i ) ) {
return false;
}
}
return true;
}
示例2: set
import gnu.trove.list.TShortList; //导入方法依赖的package包/类
public void set(final TShortList value) {
final Command command = new Command(Command.SETALL, (short) value.size());
commands.add(command);
++baselineCommandCount;
//Is this the best way to do this?
v.clear();
v.addAll(value);
for (int i = 0, size = value.size(); i < size; ++i) {
final Command subCommand = new Command(Command.SET, (short) i, value.get(i));
commands.add(subCommand);
++baselineCommandCount;
}
touch();
onChanged();
}