Open In App

Buffer arrayOffset() method in Java with Examples

Last Updated : 28 Jun, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The arrayOffset() method of java.nio.Buffer class is used to return the offset within the given buffer's backing array of the first element of the buffer. If this buffer is backed by an array then buffer position p corresponds to array index p + arrayOffset(). Invoke the hasArray method before invoking this method in order to ensure that this buffer has an accessible backing array. Syntax:
public abstract int arrayOffset()
Return Value: This method returns the offset within this buffer's array of the first element of the buffer Exception:: This method throws the ReadOnlyBufferException, If this buffer is backed by an array but is read-only. Below are the examples to illustrate the arrayOffset() method: Example 1:
Output:
arrayOffset is : 0
Example 2: For ReadOnlyBufferException
Output:
buffer is backed by an array but is read-only
Exception throws: java.nio.ReadOnlyBufferException
Reference: https://docs.oracle.com/javase/9/docs/api/java/nio/Buffer.html#arrayOffset--

Next Article
Practice Tags :

Similar Reads