要介绍NIO前,要做好准备工作。
个人觉得JDK下NIO的IntBuffer的API很诡异。所以现在简单的介绍下JDK下NIO的IntBuffer的API。
首先查看看IntBuffer的源码
public abstract class IntBuffer
extends Buffer
implements Comparable<IntBuffer>
{
...略
}
IntBuffer集成了Buffer,而Buffer的源码
public abstract class Buffer {
static final int SPLITERATOR_CHARACTERISTICS =
Spliterator.SIZED | Spliterator.SUBSIZED | Spliterator.ORDERED;
// Invariants: mark <= position <= limit <= capacity
private int mark = -1;
private int position = 0;
private int limit;
private int capacity;
...略
}
查看源代码的主要目的是告诉大家IntBuffer类里是有position 、limit、capacity这几个属性的。现在我要介绍个人见解
/**IntBuffer是个可以存放Int的类似数组的特殊容器*/
public class IntBuffer{
private int position = 0;//脚印
private int limit;//有效数量
private int capacity;//容量
}
capacity很好理解就是IntBuffer这个容器的一个大小。
limit也好理解就是IntBuffer这个容器放进了多少个有效的数据。
比较难理解的是position 的含义,他有点像指针,我把他理解为脚印,什么意思,看代码。
public static void main(String[] args) {
IntBuffer buf = IntBuffer.allocate(10);//创建指定长度的缓冲区
buf.put(13);// position位置:0 - > 1
System.out.println(buf);
buf.put(21);// position位置:1 - > 2
System.out.println(buf);
buf.put(35);// position位置:2 - > 3
System.out.println(buf);
//把位置复位为0,也就是position位置:3 - > 0
buf.flip();
System.out.println("使用flip复位:" + buf);
System.out.println("容量为: " + buf.capacity()); //容量一旦初始化后不允许改变(warp方法包裹数组除外)
System.out.println("限制为: " + buf.limit()); //由于只装载了三个元素,所以可读取或者操作的元素为3 则limit=3
System.out.println("获取下标为1的元素:" + buf.get(1));
System.out.println("get(index)方法,position位置不改变:" + buf);
buf.put(1, 4);
System.out.println("put(index, change)方法,position位置不变:" + buf);;
for (int i = 0; i < buf.limit(); i++) {
//调用get方法会使其缓冲区位置(position)向后递增一位
System.out.print(buf.get() + "\t");
}
System.out.println("buf对象遍历之后为: " + buf);
}
运行打印输出为
java.nio.HeapIntBuffer[pos=1 lim=10 cap=10]
java.nio.HeapIntBuffer[pos=2 lim=10 cap=10]
java.nio.HeapIntBuffer[pos=3 lim=10 cap=10]
使用flip复位:java.nio.HeapIntBuffer[pos=0 lim=3 cap=10]
容量为: 10
限制为: 3
获取下标为1的元素:21
get(index)方法,position位置不改变:java.nio.HeapIntBuffer[pos=0 lim=3 cap=10]
put(index, change)方法,position位置不变:java.nio.HeapIntBuffer[pos=0 lim=3 cap=10]
13 4 35 buf对象遍历之后为: java.nio.HeapIntBuffer[pos=3 lim=3 cap=10]
此外还有一些其他用法
// 1 基本操作
public static void main(String[] args) {
// wrap方法会包裹一个数组: 一般这种用法不会先初始化缓存对象的长度,因为没有意义,最后还会被wrap所包裹的数组覆盖掉。
// 并且wrap方法修改缓冲区对象的时候,数组本身也会跟着发生变化。
int[] arr = new int[]{1,2,5};
IntBuffer buf1 = IntBuffer.wrap(arr);
System.out.println(buf1);
IntBuffer buf2 = IntBuffer.wrap(arr, 0 , 2);
//这样使用表示容量为数组arr的长度,但是可操作的元素只有实际进入缓存区的元素长度
System.out.println(buf2);
}
运行打印输出为
java.nio.HeapIntBuffer[pos=0 lim=3 cap=3]
java.nio.HeapIntBuffer[pos=0 lim=2 cap=3]
// 其他方法
public static void main(String[] args) {
IntBuffer buf1 = IntBuffer.allocate(10);
int[] arr = new int[]{1,2,5};
buf1.put(arr);
System.out.println(buf1);
//一种复制方法
IntBuffer buf3 = buf1.duplicate();
System.out.println(buf3);
//设置buf1的位置属性
//buf1.position(0);
buf1.flip();
System.out.println(buf1);
System.out.println("可读数据为:" + buf1.remaining());
int[] arr2 = new int[buf1.remaining()];
//将缓冲区数据放入arr2数组中去
buf1.get(arr2);
for(int i : arr2){
System.out.print(Integer.toString(i) + ",");
}
}
运行打印输出为
java.nio.HeapIntBuffer[pos=3 lim=10 cap=10]
java.nio.HeapIntBuffer[pos=3 lim=10 cap=10]
java.nio.HeapIntBuffer[pos=0 lim=3 cap=10]
可读数据为:3
1,2,5,