当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java java.nio.IntBuffer用法及代码示例


IntBuffer 保存要在 I/O 操作中使用的整数值序列。 IntBuffer 类提供以下四类针对长缓冲区的操作:

  • 读取单个整数的绝对和相对 get 方法。
  • 写入单个整数的绝对和相对 put 方法。
  • 相对批量 put 和 get 方法,将连续的整数序列从 int 数组或其他 int 缓冲区传输到此缓冲区,并从此缓冲区传输到数组。

Int 缓冲区可以通过以下方式创建:

  • allocate():这为缓冲区的内容分配空间。
  • wrap():这会将现有的长数组包装到缓冲区中。

IntBuffer 类的大多数方法与 ByteBuffer 定义的方法直接类似。

类别声明:

public abstract class IntBuffer

extends Buffer

implements Comparable<IntBuffer>

IntBuffer类的方法:

方法

说明

IntBuffer allocate()

此方法分配一个新的int缓冲区。

IntBuffer array()

此方法返回支持此缓冲区的 int 数组。

IntBuffer arrayOffset()

此方法返回缓冲区第一个元素在该缓冲区的后备数组中的偏移量。

IntBuffer asReadOnlyBuffer()

此方法创建一个新的只读 int 缓冲区,共享该缓冲区的内容。

IntBuffer compact()

此方法压缩此缓冲区。

IntBuffer compareTo()

此方法将此缓冲区与另一个缓冲区进行比较。

IntBuffer duplicate()

此方法创建一个新的 int 缓冲区来共享该缓冲区的内容。

IntBuffer equals()

此方法告知此缓冲区是否等于另一个对象。

IntBuffer get()方法

该方法是一个相对 get 方法,返回缓冲区当前位置的int。

IntBuffer get()方法

此方法是绝对 get 方法,并返回给定索引处的int。

IntBuffer get()方法

该方法是一个相对批量获取方法并返回该缓冲区。

IntBuffer get()方法

此方法相对是批量获取方法并返回此缓冲区。

IntBuffer hasArray()

此方法告知此缓冲区是否由可访问的 int 数组支持。

hashCode()

该方法返回该缓冲区的当前哈希码。

isDirect()

此方法告诉 int 缓冲区是否是直接的。

order()

该方法检索该缓冲区的字节顺序。

IntBuffer put()方法

该方法是一个相对的 put 方法并返回该缓冲区。

IntBuffer put()方法

此方法是相对批量放置方法并返回此缓冲区。

IntBuffer put()方法

此方法是相对批量放置方法并返回此缓冲区。

IntBuffer put()方法

此方法是相对批量放置方法并返回此缓冲区。

IntBuffer put()方法

该方法是绝对批量放置方法并返回该缓冲区。

IntBuffer slice()

此方法创建一个新的 int 缓冲区,其内容是该缓冲区内容的共享子序列。

toString()

此方法返回一个总结该缓冲区状态的字符串。

IntBuffer wrap()

此方法将 int 数组包装到缓冲区中。

IntBuffer wrap()

此方法将 int 数组包装到缓冲区中。

以下是一些演示IntBuffer类及其方法的程序:

示例 1:

Java


// Java program to demonstrate 
// IntBuffer class 
  
import java.nio.*; 
import java.util.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Declaring the capacity of the IntBuffer 
        int Capacity = 10; 
  
        // Creating the IntBuffer 
  
        // creating object of intbuffer 
        // and allocating size capacity 
        IntBuffer ib = IntBuffer.allocate(Capacity); 
  
        // putting the value in intbuffer 
        ib.put(100); 
        ib.put(2, 9); 
  
        System.out.println("IntBuffer: "
                           + Arrays.toString(ib.array())); 
    } 
}
输出
IntBuffer: [100, 0, 9, 0, 0, 0, 0, 0, 0, 0]

示例 2:

Java


// Java program to demonstrate 
// IntBuffer class 
  
import java.nio.*; 
import java.util.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Declaring the capacity of the IntBuffer 
        int capacity = 10; 
  
        // Creating the IntBuffer 
        try { 
  
            // creating object of Intbuffer 
            // and allocating size capacity 
            IntBuffer ib = IntBuffer.allocate(capacity); 
  
            // putting the value in Intbuffer 
            ib.put(4); 
            ib.put(2, 9); 
            ib.rewind(); 
  
            // checking IntBuffer ib is backed by array or 
            // not 
            boolean isArray = ib.hasArray(); 
  
            // checking if else condition 
            if (isArray) 
                System.out.println("IntBuffer ib is"
                                   + " backed by array"); 
            else
                System.out.println( 
                    "IntBuffer ib is"
                    + " not backed by any array"); 
        } 
  
        catch (IllegalArgumentException e) { 
            System.out.println( 
                "IllegalArgumentException catched"); 
        } 
  
        catch (ReadOnlyBufferException e) { 
            System.out.println( 
                "ReadOnlyBufferException catched"); 
        } 
    } 
}
输出
IntBuffer ib is backed by array


相关用法


注:本文由纯净天空筛选整理自mank1083大神的英文原创作品 java.nio.IntBuffer Class in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。