java.nio.ByteBuffer类的slice()方法用于创建一个新的字节缓冲区,其内容是给定缓冲区内容的共享子序列。
新缓冲区的内容将从该缓冲区的当前位置开始。对该缓冲区内容的更改将在新缓冲区中可见,反之亦然。这两个缓冲区的位置,限制和标记值将是独立的。
新缓冲区的位置将为零,其容量和限制将为该缓冲区中剩余的浮点数,并且其标记将不确定。当且仅当该缓冲区是直接缓冲区时,新缓冲区才是直接缓冲区;当且仅当该缓冲区是只读缓冲区时,新缓冲区才是只读缓冲区。
用法:
public abstract ByteBuffer slice()
返回值:此方法返回新的字节缓冲区。
下面是说明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 ByteBuffer
int capacity = 5;
// Creating the ByteBuffer
try {
// creating object of ByteBuffer
// and allocating size capacity
ByteBuffer bb1
= ByteBuffer.allocate(capacity);
// putting the value in ByteBuffer
bb1.put((byte)10);
bb1.put((byte)20);
// print the ByteBuffer
System.out.println("Original ByteBuffer: "
+ Arrays.toString(bb1.array()));
// print the ByteBuffer position
System.out.println("\nposition: "
+ bb1.position());
// print the ByteBuffer capacity
System.out.println("\ncapacity: "
+ bb1.capacity());
// Creating a shared subsequence buffer
// of given ByteBuffer
// using slice() method
ByteBuffer bb2 = bb1.slice();
// print the shared subsequance buffer
System.out.println("\nshared subsequance ByteBuffer: "
+ Arrays.toString(bb2.array()));
// print the ByteBuffer position
System.out.println("\nposition: " + bb2.position());
// print the ByteBuffer capacity
System.out.println("\ncapacity: " + bb2.capacity());
}
catch (IllegalArgumentException e) {
System.out.println("IllegalArgumentException catched");
}
catch (ReadOnlyBufferException e) {
System.out.println("ReadOnlyBufferException catched");
}
}
}
输出:
Original ByteBuffer: [10, 20, 0, 0, 0] position: 2 capacity: 5 shared subsequance ByteBuffer: [10, 20, 0, 0, 0] position: 0 capacity: 3
范例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 ByteBuffer
int capacity = 5;
// Creating the ByteBuffer
try {
// creating object of ByteBuffer
// and allocating size capacity
ByteBuffer bb1 = ByteBuffer.allocate(capacity);
// putting the value in ByteBuffer
bb1.put((byte)10)
.put((byte)20)
.put((byte)30)
.put((byte)40)
.put((byte)50);
// print the ByteBuffer
System.out.println("Original ByteBuffer: "
+ Arrays.toString(bb1.array()));
// print the ByteBuffer position
System.out.println("\nposition: "
+ bb1.position());
// print the ByteBuffer capacity
System.out.println("\ncapacity: "
+ bb1.capacity());
// Creating a shared subsequence buffer
// of given ByteBuffer
// using slice() method
ByteBuffer bb2 = bb1.slice();
// print the shared subsequance buffer
System.out.println("\nshared subsequance ByteBuffer: "
+ Arrays.toString(bb2.array()));
// print the ByteBuffer position
System.out.println("\nposition: " + bb2.position());
// print the ByteBuffer capacity
System.out.println("\ncapacity: " + bb2.capacity());
}
catch (IllegalArgumentException e) {
System.out.println("IllegalArgumentException catched");
}
catch (ReadOnlyBufferException e) {
System.out.println("ReadOnlyBufferException catched");
}
}
}
输出:
Original ByteBuffer: [10, 20, 30, 40, 50] position: 5 capacity: 5 shared subsequance ByteBuffer: [10, 20, 30, 40, 50] position: 0 capacity: 0
参考: https://docs.oracle.com/javase/9/docs/api/java/nio/ByteBuffer.html#slice–
相关用法
- Java ByteBuffer get()用法及代码示例
- Java ByteBuffer getShort()用法及代码示例
- Java ByteBuffer getLong()用法及代码示例
- Java ByteBuffer getInt()用法及代码示例
- Java ByteBuffer getDouble()用法及代码示例
- Java ByteBuffer getChar()用法及代码示例
- Java ByteBuffer asDoubleBuffer()用法及代码示例
- Java ByteBuffer arrayOffset()用法及代码示例
- Java ByteBuffer asLongBuffer()用法及代码示例
- Java ByteBuffer asShortBuffer()用法及代码示例
- Java ByteBuffer getFloat()用法及代码示例
- Java ByteBuffer toString()用法及代码示例
- Java ByteBuffer hashCode()用法及代码示例
- Java ByteBuffer order()用法及代码示例
- Java ByteBuffer equals()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 ByteBuffer slice() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。