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


Java IntBuffer hasArray()用法及代码示例


java.nio.IntBuffer类的hasArray()方法用于确保给定缓冲区是否由可访问的int数组支持。如果此缓冲区有可访问的后备数组,则返回true,否则返回false。如果此方法返回true,则可以安全地调用array()和arrayOffset()方法,因为它们在支持数组上起作用。

用法:

public final boolean hasArray()

返回值:当且仅当此缓冲区由数组支持并且不是只读时,此方法才会返回true。否则返回false。


下面是说明hasArray()方法的示例:

范例1:当缓冲区由数组支持时

// Java program to demonstrate 
// hasArray() method 
  
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

范例2:当缓冲区不由数组支持时

// Java program to demonstrate 
// hasArray() method 
  
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(8); 
            ib.put(2, 9); 
            ib.rewind(); 
  
            // Creating a read-only copy of IntBuffer 
            // using asReadOnlyBuffer() method 
            IntBuffer ib1 = ib.asReadOnlyBuffer(); 
  
            // checking IntBuffer ib is backed by array or not 
            boolean isArray = ib1.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 not backed by any array


相关用法


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