本文整理汇总了Java中java.nio.IntBuffer.hasRemaining方法的典型用法代码示例。如果您正苦于以下问题:Java IntBuffer.hasRemaining方法的具体用法?Java IntBuffer.hasRemaining怎么用?Java IntBuffer.hasRemaining使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.nio.IntBuffer
的用法示例。
在下文中一共展示了IntBuffer.hasRemaining方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: main
import java.nio.IntBuffer; //导入方法依赖的package包/类
public static void main(String[] args) {
ByteBuffer bb=ByteBuffer.allocate(BSIZE);
IntBuffer ib=bb.asIntBuffer();
ib.put(new int[]{11,42,47,99,143,811,1016});
System.out.println(ib.getClass().getName());
System.out.println(ib.get(3));
ib.put(3,1811);
ib.flip();
while (ib.hasRemaining()){
int i=ib.get();
System.out.println(i);
}
}
示例2: test
import java.nio.IntBuffer; //导入方法依赖的package包/类
@Override
public void test() throws IOException {
FileChannel fc=new FileInputStream(new File("test")).getChannel();
IntBuffer ib=fc.map(
FileChannel.MapMode.READ_ONLY,0,fc.size()).asIntBuffer();
while (ib.hasRemaining()){
ib.get();
}
fc.close();
}