本文整理汇总了Java中it.unimi.dsi.fastutil.objects.Object2ObjectArrayMap类的典型用法代码示例。如果您正苦于以下问题:Java Object2ObjectArrayMap类的具体用法?Java Object2ObjectArrayMap怎么用?Java Object2ObjectArrayMap使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Object2ObjectArrayMap类属于it.unimi.dsi.fastutil.objects包,在下文中一共展示了Object2ObjectArrayMap类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testSerialisation
import it.unimi.dsi.fastutil.objects.Object2ObjectArrayMap; //导入依赖的package包/类
@Test
public void testSerialisation() throws IOException, ClassNotFoundException {
// We can't really test reference maps as equals() doesnt' work
Object2ObjectArrayMap<Integer, Integer> m = new Object2ObjectArrayMap<Integer, Integer>();
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputStream( baos );
oos.writeObject( m );
oos.close();
assertEquals( m, BinIO.loadObject( new ByteArrayInputStream( baos.toByteArray() ) ) );
m.put( new Integer( 0 ), new Integer( 1 ) );
m.put( new Integer( 1 ), new Integer( 2 ) );
baos.reset();
oos = new ObjectOutputStream( baos );
oos.writeObject( m );
oos.close();
assertEquals( m, BinIO.loadObject( new ByteArrayInputStream( baos.toByteArray() ) ) );
}