Java中的IntBuffer compact()方法
可以使用compact()类java.nio.IntBuffer中的方法来压缩缓冲区。此方法不需要参数,它返回新的压缩的IntBuffer,其内容与原始缓冲区相同。如果缓冲区是只读的,则抛出ReadOnlyBufferException。
演示此的程序如下所示-
示例
import java.nio.*;
import java.util.*;
public class Demo {
public static void main(String[] args) {
int n = 5;
try {
IntBuffer buffer = IntBuffer.allocate(n);
buffer.put(3);
buffer.put(7);
buffer.put(5);
System.out.println("The Original IntBuffer is: " + Arrays.toString(buffer.array()));
System.out.println("The position is: " + buffer.position());
System.out.println("The limit is: " + buffer.limit());
IntBuffer bufferCompact = buffer.compact();
System.out.println("\nThe Compacted IntBuffer 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 IntBuffer is: [3, 7, 5, 0, 0] The position is: 3 The limit is: 5 The Compacted IntBuffer is: [0, 0, 5, 0, 0] The position is: 2 The limit is: 5
热门推荐
10 香港老妈结婚祝福语简短
11 毕业立体贺卡祝福语简短
12 简短新年年会祝福语
13 评论小品祝福语大全简短
14 恭喜师兄结婚祝福语简短
15 员工集体辞职祝福语简短
16 高中新生祝福语 简短
17 装修祝福语男生搞笑简短
18 生日开业蛋糕祝福语简短