ShortBuffer arrayOffset() method in Java With Examples
Last Updated :
19 Sep, 2018
The
arrayOffset() method of
java.nio.ShortBuffer class is used to return the offset within the buffer’s backing array of the first element of the buffer. It means that if this buffer is backed by an array, then buffer position p corresponds to array index p + arrayOffset().
In-order to check whether this buffer has a backing array, hasArray() method can be used. It ensures that this buffer has an accessible backing array.
Syntax :
public final 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
ReadOnlyBufferException if this buffer is backed by an array but is read-only.
Below program illustrates the
arrayOffset() method.
Program 1:
Java
// Java program to demonstrate
// arrayOffset() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the capacity of the ShortBuffer
int capacity = 10;
// Creating the ShortBuffer
try {
// creating object of shortbuffer
// and allocating size capacity
ShortBuffer sb = ShortBuffer.allocate(capacity);
// putting the value in shortbuffer
sb.put((short)856);
sb.put(2, (short)961);
// print the ShortBuffer
System.out.println("ShortBuffer: "
+ Arrays.toString(sb.array()));
// print the arrayOffset
System.out.println("arrayOffset: "
+ sb.arrayOffset());
}
catch (IllegalArgumentException e) {
System.out.println("IllegalArgumentException catched");
}
catch (ReadOnlyBufferException e) {
System.out.println("Exception throws" + e);
}
}
}
Output:
ShortBuffer: [856, 0, 961, 0, 0, 0, 0, 0, 0, 0]
arrayOffset: 0
Program 2: To demonstrate ReadOnlyBufferException
Java
// Java program to demonstrate
// arrayOffset() method
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// Declaring the capacity of the ShortBuffer
int capacity = 10;
// Creating the ShortBuffer
try {
// creating object of shortbuffer
// and allocating size capacity
ShortBuffer sb = ShortBuffer.allocate(capacity);
// putting the value in shortbuffer
sb.put((short)856);
sb.put(2, (short)961);
sb.rewind();
// Creating a read-only copy of ShortBuffer
// using asReadOnlyBuffer() method
ShortBuffer sb1 = sb.asReadOnlyBuffer();
// print the ShortBuffer
System.out.print("Read only buffer : ");
while (sb1.hasRemaining())
System.out.print(sb1.get() + ", ");
// next line
System.out.println("");
// print the arrayOffset
System.out.println("\nTry to print the array offset"
+ " of read only buffer");
System.out.println("arrayOffset: " + sb1.arrayOffset());
}
catch (IllegalArgumentException e) {
System.out.println("Exception throws: " + e);
}
catch (ReadOnlyBufferException e) {
System.out.println("Exception throws: " + e);
}
}
}
Output:
Read only buffer : 856, 0, 961, 0, 0, 0, 0, 0, 0, 0,
Try to print the array offset of read only buffer
Exception throws: java.nio.ReadOnlyBufferException
Similar Reads
ShortBuffer array() Method in Java with Examples The array() method of java.nio.ShortBuffer is used to return the short array that backs this buffer(optional). Modifications to this buffer's content will cause the returned array's content to be modified, and vice versa. Invoke the hasArray method before invoking this method in order to ensure that
3 min read
ShortBuffer allocate() method in Java With Examples The allocate() method of java.nio.ShortBuffer Class is used to allocate a new short buffer.The position of the new Buffer will be zero & it's limit is its capacity, though the mark is undefined, and each of its elements is initialized to zero. It will be having a backing array, and the array off
2 min read
ShortBuffer flip() methods in Java with Examples The flip() method of java.nio.ShortBuffer Class is used to flip this buffer. By flipping this buffer, it meant that the buffer will be trimmed to the current position and the then the position will be changed to zero. During this process, if any mark is there on the buffer, then that mark will be au
2 min read
Buffer arrayOffset() method in Java with Examples 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 invok
3 min read
Buffer array() methods in Java with Examples The array() method of java.nio.Buffer class is used to return the array that backs the taken buffer. This method is intended to allow array-backed buffers to be passed to native code more efficiently. Concrete subclasses provide more strongly-typed return values for this method. Modifications to thi
3 min read
ShortBuffer rewind() method in Java with Examples The rewind() method of java.nio.ShortBuffer Class is used to rewind this buffer. By rewinding this Buffer, the following actions are taken: Current position is set to zero the mark is discarded, if any, but the mark value is unchanged. Syntax: public ShortBuffer rewind() Parameter: This method do no
2 min read