java.nio.IntBuffer類的slice()方法用於創建一個新的int緩衝區,其內容是給定緩衝區內容的共享子序列。
新緩衝區的內容將從該緩衝區的當前位置開始。對該緩衝區內容的更改將在新緩衝區中可見,反之亦然。這兩個緩衝區的位置,限製和標記值將是獨立的。新緩衝區的位置將為零,其容量和限製將為該緩衝區中剩餘的整數數量,並且其標記將不確定。當且僅當該緩衝區是直接緩衝區時,新緩衝區才是直接緩衝區;當且僅當該緩衝區是隻讀緩衝區時,新緩衝區才是隻讀緩衝區。
用法:
public abstract IntBuffer slice()
返回值:此方法返回新的int緩衝區。
下麵是說明slice()方法的示例:
範例1:
// Java program to demonstrate
// slice() 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 ib1 = IntBuffer.allocate(capacity);
// putting the value in intbuffer
ib1.put(8);
ib1.put(9);
// print the IntBuffer
System.out.println("Original IntBuffer: "
+ Arrays.toString(ib1.array()));
// print the IntBuffer position
System.out.println("position: " + ib1.position());
// print the IntBuffer capacity
System.out.println("capacity: " + ib1.capacity());
// Creating a shared subsequance buffer of given IntBuffer
// using slice() method
IntBuffer ib2 = ib1.slice();
// print the shared subsequance buffer
System.out.println("shared subsequance IntBuffer: "
+ Arrays.toString(ib2.array()));
// print the IntBuffer position
System.out.println("position: " + ib2.position());
// print the IntBuffer capacity
System.out.println("capacity: " + ib2.capacity());
}
catch (IllegalArgumentException e) {
System.out.println("IllegalArgumentException catched");
}
catch (ReadOnlyBufferException e) {
System.out.println("ReadOnlyBufferException catched");
}
}
}
輸出:
Original IntBuffer: [8, 9, 0, 0, 0, 0, 0, 0, 0, 0] position: 2 capacity: 10 shared subsequance IntBuffer: [8, 9, 0, 0, 0, 0, 0, 0, 0, 0] position: 0 capacity: 8
範例2:
// Java program to demonstrate
// slice() 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 ib1 = IntBuffer.allocate(capacity);
// putting the value in floatbuffer
ib1.put(8);
ib1.put(9);
ib1.put(5);
ib1.put(3);
// print the IntBuffer
System.out.println("Original IntBuffer: "
+ Arrays.toString(ib1.array()));
// print the IntBuffer position
System.out.println("position: " + ib1.position());
// print the IntBuffer capacity
System.out.println("capacity: " + ib1.capacity());
// Creating a shared subsequance buffer of given IntBuffer
// using slice() method
IntBuffer ib2 = ib1.slice();
ib2.put(2);
ib2.put(6);
// print the shared subsequance buffer
System.out.println("shared subsequance IntBuffer: "
+ Arrays.toString(ib2.array()));
// print the IntBuffer position
System.out.println("position: " + ib2.position());
// print the IntBuffer capacity
System.out.println("capacity: " + ib2.capacity());
}
catch (IllegalArgumentException e) {
System.out.println("IllegalArgumentException catched");
}
catch (ReadOnlyBufferException e) {
System.out.println("ReadOnlyBufferException catched");
}
}
}
輸出:
Original IntBuffer: [8, 9, 5, 3, 0, 0, 0, 0, 0, 0] position: 4 capacity: 10 shared subsequance IntBuffer: [8, 9, 5, 3, 2, 6, 0, 0, 0, 0] position: 2 capacity: 6
相關用法
- Java IntBuffer asReadOnlyBuffer()用法及代碼示例
- Java IntBuffer compareTo()用法及代碼示例
- Java IntBuffer equals()用法及代碼示例
- Java IntBuffer allocate()用法及代碼示例
- Java IntBuffer arrayOffset()用法及代碼示例
- Java IntBuffer compact()用法及代碼示例
- Java IntBuffer array()用法及代碼示例
- Java IntBuffer wrap()用法及代碼示例
- Java IntBuffer hasArray()用法及代碼示例
- Java IntBuffer rewind()用法及代碼示例
- Java IntBuffer duplicate()用法及代碼示例
- Java IntBuffer clear()用法及代碼示例
- Java IntBuffer limit()用法及代碼示例
- Java IntBuffer mark()用法及代碼示例
- Java IntBuffer flip()用法及代碼示例
注:本文由純淨天空篩選整理自nitin_sharma大神的英文原創作品 IntBuffer slice() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。