Java中的ShortBuffer compact()方法
可以使用compact()类java.nio.ShortBuffer中的方法来压缩缓冲区。此方法不需要参数,它会返回新的压缩的ShortBuffer,其内容与原始缓冲区相同。如果缓冲区是只读的,则抛出ReadOnlyBufferException。
演示此的程序如下所示-
示例
import java.nio.*;
import java.util.*;
public class Demo {
public static void main(String[] args) {
int n = 5;
try {
ShortBuffer buffer = ShortBuffer.allocate(n);
buffer.put((short)25);
buffer.put((short)18);
buffer.put((short)30);
System.out.println("The Original ShortBuffer is: " + Arrays.toString(buffer.array()));
System.out.println("The position is: " + buffer.position());
System.out.println("The limit is: " + buffer.limit());
ShortBuffer bufferCompact = buffer.compact();
System.out.println("\nThe Compacted ShortBuffer is: " + Arrays.toString(bufferCompact.array()));
System.out.println("The position is: " + bufferCompact.position());
System.out.println("The limit is: " + bufferCompact.limit());
} catch (IllegalArgumentException e) {
System.out.println("Error!!! IllegalArgumentException");
} catch (ReadOnlyBufferException e) {
System.out.println("Error!!! ReadOnlyBufferException");
}
}
}上面程序的输出如下-
输出结果
The Original ShortBuffer is: [25, 18, 30, 0, 0] The position is: 3 The limit is: 5 The Compacted ShortBuffer is: [0, 0, 30, 0, 0] The position is: 2 The limit is: 5
热门推荐
10 下飞机祝福语简短英文
11 嫂子礼物生日祝福语简短
12 生日祝福语老师高雅简短
13 农村文化祝福语大全简短
14 祝福语生日德云社文案简短
15 出阁宴祝福语致辞简短
16 英语祝福语小众句子简短
17 祝福语送学校文案简短
18 虎年生女孩 祝福语简短