|
发表于 2020-1-22 23:36:01
|
显示全部楼层
asCharBuffer
public abstract CharBuffer asCharBuffer()
Creates a view of this byte buffer as a char buffer.
The content of the new buffer will start at this buffer's current position. Changes to this buffer's content will be visible in the new buffer, and vice versa; the two buffers' position, limit, and mark values will be independent.
The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided by two, and its mark will be undefined. The new buffer will be direct if, and only if, this buffer is direct, and it will be read-only if, and only if, this buffer is read-only.
Returns:
A new char buffer
看最后一句:and it will be read-only if, and only if, this buffer is read-only.
由此看来,这样申请的ByteBuffer buf=ByteBuffer.allocate(1024);
ByteBuffer是可以write的
lz可以用这个方法审查
isReadOnly()
|
|