Java 中的 ByteBuffer asIntBuffer() 方法
java 8programmingobject oriented programming
可以使用 java.nio.ByteBuffer 类中的 asIntBuffer() 方法将 ByteBuffer 视图创建为 IntBuffer。此方法不需要参数,并根据需要返回 int 缓冲区。此缓冲区反映对原始缓冲区所做的更改,反之亦然。
下面给出了一个演示此操作的程序 −
示例
import java.nio.*; import java.util.*; public class Demo { public static void main(String[] args) { int n = 50; try { ByteBuffer bufferB = ByteBuffer.allocate(n); IntBuffer bufferI = bufferB.asIntBuffer(); bufferI.put(3); bufferI.put(9); bufferI.put(1); bufferI.put(7); bufferI.put(4); bufferI.rewind(); int i; System.out.print("The IntBuffer is: "); while ((i = bufferI.get()) != 0) { System.out.print(i + " "); } } catch (IllegalArgumentException e) { System.out.println("Error!!! IllegalArgumentException"); } catch (ReadOnlyBufferException e) { System.out.println("Error!!! ReadOnlyBufferException"); } } }
输出
The IntBuffer is: 3 9 1 7 4