Java 中 IntBuffer 的 hasArray() 方法
可以通过使用 Java.nio.IntBuffer 类的 hasArray() 方法检查缓冲区是否支持可访问的 int 数组。如果缓冲区支持可访问的 int 数组,则此方法返回 true,否则返回 false。
如下所示的程序演示了此操作:
示例
import java.nio.*; import java.util.*; public class Demo { public static void main(String[] args) { int n = 5; try { IntBuffer buffer = IntBuffer.allocate(5); buffer.put(8); buffer.put(1); buffer.put(3); buffer.put(7); buffer.put(5); buffer.rewind(); System.out.println("The IntBuffer is: " + Arrays.toString(buffer.array())); boolean flag = buffer.hasArray(); if (flag) System.out.println("The IntBuffer is backed by an array"); else System.out.println("The IntBuffer is not backed by any array"); } catch (IllegalArgumentException e) { System.out.println("Error!!! IllegalArgumentException"); } catch (ReadOnlyBufferException e){ System.out.println("Error!!! ReadOnlyBufferException"); } } }
上述程序的输出如下:
输出
The IntBuffer is: [8, 1, 3, 7, 5] The IntBuffer is backed by an array
广告