java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > Java ByteBuffer的allocate方法 和allocateDirect方法

Java中ByteBuffer的allocate方法 和allocateDirect方法的区别和选用原则解析

作者:Shujie_L

在Java中,ByteBuffer是java.nio包中的一个类,用于处理字节数据,ByteBuffer提供了两种方式来分配内存:allocate和allocateDirect,这篇文章主要介绍了Java中ByteBuffer的allocate方法 和allocateDirect方法的区别和选用原则 ,需要的朋友可以参考下

背景

公司开发一个商用的支付应用。写协议的时候需要用到byte类型数组来填充协议的报文数据。在调研了JDK各个类库之后,最终选用Java类库中的ByteBuffer

在Java中,ByteBufferjava.nio包中的一个类,用于处理字节数据。ByteBuffer提供了两种方式来分配内存:allocateallocateDirect

    /**
     * Allocates a new direct byte buffer.
     *
     * <p> The new buffer's position will be zero, its limit will be its
     * capacity, its mark will be undefined, and each of its elements will be
     * initialized to zero.  Whether or not it has a
     * {@link #hasArray backing array} is unspecified.
     *
     * @param  capacity
     *         The new buffer's capacity, in bytes
     *
     * @return  The new byte buffer
     *
     * @throws  IllegalArgumentException
     *          If the <tt>capacity</tt> is a negative integer
     */
    public static ByteBuffer allocateDirect(int capacity) {
        // Android-changed: Android's DirectByteBuffers carry a MemoryRef.
        // return new DirectByteBuffer(capacity);
        DirectByteBuffer.MemoryRef memoryRef = new DirectByteBuffer.MemoryRef(capacity);
        return new DirectByteBuffer(capacity, memoryRef);
    }
    /**
     * Allocates a new byte buffer.
     *
     * <p> The new buffer's position will be zero, its limit will be its
     * capacity, its mark will be undefined, and each of its elements will be
     * initialized to zero.  It will have a {@link #array backing array},
     * and its {@link #arrayOffset array offset} will be zero.
     *
     * @param  capacity
     *         The new buffer's capacity, in bytes
     *
     * @return  The new byte buffer
     *
     * @throws  IllegalArgumentException
     *          If the <tt>capacity</tt> is a negative integer
     */
    public static ByteBuffer allocate(int capacity) {
        if (capacity < 0)
            throw new IllegalArgumentException();
        return new HeapByteBuffer(capacity, capacity);
    }

区别

这两种方式分别对应于不同的内存分配策略,具有不同的优劣势。

1. allocate:

```java
ByteBuffer buffer = ByteBuffer.allocate(1024);
```

2. allocateDirect:

```java
ByteBuffer directBuffer = ByteBuffer.allocateDirect(1024);
```

总结

选择使用哪种方式取决于应用的需求和性能特征:

在使用allocateDirect时需要谨慎,因为它可能占用较多的本地内存,过度使用可能导致本地内存耗尽。

在选用这两种技术方案中哪一种的时候需要根据具体的应用场景和需求权衡两者之间的取舍。

到此这篇关于Java中ByteBuffer的allocate方法 和allocateDirect方法的区别和选用原则 的文章就介绍到这了,更多相关Java ByteBuffer的allocate方法 和allocateDirect方法内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文