Method Duplicate
Duplicate()
Returns a duplicated buffer that shares its content with this buffer.
The duplicated buffer's position, limit, capacity and mark are the same as this buffer's. The duplicated buffer's read-only property and byte order are the same as this buffer's too.
The new buffer shares its content with this buffer, which means either buffer's change of content will be visible to the other. The two buffer's position, limit and mark are independent.
Declaration
public abstract ByteBuffer Duplicate()
Returns
Type | Description |
---|---|
ByteBuffer | a duplicated buffer that shares its content with this buffer. |