當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java IntBuffer put()方法用法及代碼示例


put(int i)

java.nio.IntBuffer類的put(int i)方法用於將給定的int寫入當前位置的新創建的int緩衝區,然後遞增該位置。

用法:

public abstract IntBuffer put(int i)

參數:此方法將int值i作為要寫入int緩衝區的參數。



返回值:此方法返回此緩衝區,在其中插入int值。

異常:此方法引發以下異常:

  • BufferOverflowException-如果此緩衝區的當前位置不小於其限製
  • ReadOnlyBufferException-如果此緩衝區是隻讀的

以下是說明put(int i)方法的示例:

範例1:

// Java program to demonstrate 
// put() method 
  
import java.nio.*; 
import java.util.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Declaring the capacity of the IntBuffer 
        int capacity = 3; 
  
        // Creating the IntBuffer 
        try { 
  
            // creating object of Intbuffer 
            // and allocating size capacity 
            IntBuffer ib = IntBuffer.allocate(capacity); 
  
            // putting the value in Intbuffer using put() method 
            ib.put(8); 
            ib.put(9); 
            ib.put(7); 
            ib.rewind(); 
  
            // print the IntBuffer 
            System.out.println("Original IntBuffer:"
                               + Arrays.toString(ib.array())); 
        } 
  
        catch (BufferOverflowException e) { 
            System.out.println("Exception throws:" + e); 
        } 
  
        catch (ReadOnlyBufferException e) { 
            System.out.println("Exception throws:" + e); 
        } 
    } 
}
輸出:
Original IntBuffer:[8, 9, 7]

範例2:演示BufferOverflowException。

// Java program to demonstrate 
// put() method 
  
import java.nio.*; 
import java.util.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Declaring the capacity of the IntBuffer 
        int capacity = 3; 
  
        // Creating the IntBuffer 
        try { 
  
            // creating object of Intbuffer 
            // and allocating size capacity 
            IntBuffer ib = IntBuffer.allocate(capacity); 
  
            // putting the value in Intbuffer using put() method 
            ib.put(8); 
            ib.put(9); 
            ib.put(7); 
  
            System.out.println("Trying to put the Int at the "
                               + "position more than its limit"); 
            ib.put(7); 
  
            // rewind the Intbuffer 
            ib.rewind(); 
  
            // print the IntBuffer 
            System.out.println("Original IntBuffer:  "
                               + Arrays.toString(ib.array())); 
        } 
  
        catch (BufferOverflowException e) { 
            System.out.println("Exception throws:" + e); 
        } 
  
        catch (ReadOnlyBufferException e) { 
            System.out.println("Exception throws:" + e); 
        } 
    } 
}
輸出:
Trying to put the Int at the position more than its limit
Exception throws:java.nio.BufferOverflowException

範例3:演示ReadOnlyBufferException。

// Java program to demonstrate 
// put() method 
  
import java.nio.*; 
import java.util.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Declaring the capacity of the IntBuffer 
        int capacity = 3; 
  
        // Creating the IntBuffer 
        try { 
  
            // creating object of Intbuffer 
            // and allocating size capacity using allocate() method 
            IntBuffer ib = IntBuffer.allocate(capacity); 
  
            // Creating a read-only copy of IntBuffer 
            // using asReadOnlyBuffer() method 
            IntBuffer ib1 = ib.asReadOnlyBuffer(); 
  
            System.out.println("Trying to put the Int value"
                               + " in read only buffer"); 
  
            // putting the value in readonly Intbuffer 
            // using put() method 
            ib1.put(8); 
        } 
  
        catch (BufferOverflowException e) { 
            System.out.println("Exception throws:" + e); 
        } 
  
        catch (ReadOnlyBufferException e) { 
            System.out.println("Exception throws:" + e); 
        } 
    } 
}
輸出:
Trying to put the Int value in read only buffer
Exception throws:java.nio.ReadOnlyBufferException

put(int index, int i)

java.nio.IntBuffer類的put(int index,int i)方法用於將給定的int寫入給定索引處的緩衝區。



用法:

public abstract IntBuffer put(int index, int i)

參數:此方法將以下參數作為參數:

  • index:將要寫入int的索引
  • i:要寫入的int值

返回值:此方法返回此緩衝區。

異常:此方法引發以下異常:

  • IndexOutOfBoundsException-如果索引為負或不小於緩衝區的限製
  • ReadOnlyBufferException-如果此緩衝區是隻讀的

以下示例說明了put(int index,int i)方法:

範例1:

// Java program to demonstrate 
// put() method 
  
import java.nio.*; 
import java.util.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Declaring the capacity of the IntBuffer 
        int capacity = 3; 
  
        // Creating the IntBuffer 
        try { 
  
            // creating object of Intbuffer 
            // and allocating size capacity 
            IntBuffer ib = IntBuffer.allocate(capacity); 
  
            // putting the value in Intbuffer using put() at  index 0 
            ib.put(0, 8); 
  
            // putting the value in Intbuffer using put() at  index 2 
            ib.put(2, 9); 
  
            // putting the value in Intbuffer using put() at  index 1 
            ib.put(1, 7); 
  
            // rewinding the Intbuffer 
            ib.rewind(); 
  
            // print the IntBuffer 
            System.out.println("Original IntBuffer:  "
                               + Arrays.toString(ib.array())); 
        } 
  
        catch (IndexOutOfBoundsException e) { 
            System.out.println("Exception throws:" + e); 
        } 
  
        catch (ReadOnlyBufferException e) { 
            System.out.println("Exception throws:" + e); 
        } 
    } 
}
輸出:
Original IntBuffer: [8, 7, 9]

範例2:演示IndexOutOfBoundsException。

// Java program to demonstrate 
// put() method 
  
import java.nio.*; 
import java.util.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Declaring the capacity of the IntBuffer 
        int capacity = 3; 
  
        // Creating the IntBuffer 
        try { 
  
            // creating object of Intbuffer 
            // and allocating size capacity 
            IntBuffer ib = IntBuffer.allocate(capacity); 
  
            // putting the value in Intbuffer 
            // using put() at  index 0 
            ib.put(0, 8); 
  
            // putting the value in Intbuffer 
            // using put() at  index 2 
            ib.put(2, 9); 
  
            // putting the value in Intbuffer 
            // using put() at  index -1 
            System.out.println("Trying to put the value"
                               + " at the negative index"); 
            ib.put(-1, 7); 
        } 
  
        catch (IndexOutOfBoundsException e) { 
            System.out.println("Exception throws:" + e); 
        } 
  
        catch (ReadOnlyBufferException e) { 
            System.out.println("Exception throws:" + e); 
        } 
    } 
}
輸出:
Trying to put the value at the negative index
Exception throws:java.lang.IndexOutOfBoundsException

範例3:演示ReadOnlyBufferException。

// Java program to demonstrate 
// put() method 
  
import java.nio.*; 
import java.util.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Declaring the capacity of the IntBuffer 
        int capacity = 3; 
  
        // Creating the IntBuffer 
        try { 
  
            // creating object of Intbuffer 
            // and allocating size capacity using allocate() method 
            IntBuffer ib = IntBuffer.allocate(capacity); 
  
            // Creating a read-only copy of IntBuffer 
            // using asReadOnlyBuffer() method 
            IntBuffer ib1 = ib.asReadOnlyBuffer(); 
  
            System.out.println("Trying to put the Int value"
                               + " in read only buffer"); 
  
            // putting the value in readonly Intbuffer 
            // using put() method 
            ib1.put(0, 8); 
        } 
  
        catch (BufferOverflowException e) { 
            System.out.println("Exception throws:" + e); 
        } 
  
        catch (ReadOnlyBufferException e) { 
            System.out.println("Exception throws:" + e); 
        } 
    } 
}
輸出:
Trying to put the Int value in read only buffer
Exception throws:java.nio.ReadOnlyBufferException



相關用法


注:本文由純淨天空篩選整理自nitin_sharma大神的英文原創作品 IntBuffer put() methods in Java | Set 1。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。