摘要:
*MappedByteBuffer的创建 在FileChannel上调用map方法 返回一个MappedByteBuffer对象 public MappedByteBuffer map(MapMode mode, long position, long size)
MapMode 映射模式(MapMode 是FileChannel中的一个内部类) 有三个可选值 1.READ_ONLY 只读映射模式 2.READ_WRITE 读/写映射模式 3.PRIVATE 通过put方法对MappedByteBuffer的修改 不会修改到磁盘文件 只是虚拟内存的修改*MappedByteBuffer在父类. 阅读全文