LongBuffer get() methods in Java
Last Updated :
09 Jun, 2022
get()
The get() method of java.nio.LongBuffer Class is used to read the Long at the given buffer’s current position, and then increment the position.
Syntax :
public abstract Long get()
Return Value: This method returns the Long value at the buffer’s current position.
Throws: This method throws BufferUnderflowException – If the buffer’s current position is not smaller than its limit, then this exception is thrown.
Below are the examples to illustrate the get() method:
Example 1:
Java
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
int capacity = 5 ;
try {
LongBuffer ib = LongBuffer.allocate(capacity);
ib.put( 8 );
ib.put( 9 );
ib.put( 1 );
ib.rewind();
System.out.println("Original LongBuffer: "
+ Arrays.toString(ib.array()));
Long value = ib.get();
System.out.println("Long Value: " + value);
Long value1 = ib.get();
System.out.print("Next Long Value: " + value1);
}
catch (IllegalArgumentException e) {
System.out.println("IllegalArgumentException catched");
}
catch (ReadOnlyBufferException e) {
System.out.println("ReadOnlyBufferException catched");
}
catch (BufferUnderflowException e) {
System.out.println("Exception throws : " + e);
}
}
}
|
Output:
Original LongBuffer: [8, 9, 1, 0, 0]
Long Value: 8
Next Long Value: 9
Example 2:
Java
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
int capacity = 3 ;
try {
LongBuffer ib = LongBuffer.allocate(capacity);
ib.put( 8 );
ib.put( 9 );
System.out.println("Original LongBuffer: "
+ Arrays.toString(ib.array()));
Long value = ib.get();
System.out.println("Long Value: " + value);
System.out.print("Since the buffer current position is incremented");
System.out.print(" to greater than its limit ");
Long value1 = ib.get();
System.out.print("Next Long Value: " + value1);
}
catch (IllegalArgumentException e) {
System.out.println("IllegalArgumentException catched");
}
catch (ReadOnlyBufferException e) {
System.out.println("ReadOnlyBufferException catched");
}
catch (BufferUnderflowException e) {
System.out.println("Exception throws : " + e);
}
}
}
|
Output:
Original LongBuffer: [8, 9, 0]
Long Value: 0
Since the buffer current position is incremented to greater than its limit Exception throws : java.nio.BufferUnderflowException
get(Long index)
The get(Long index) method of LongBuffer is used to read the article at a specified index.
Syntax :
public abstract Long get(Long index)
Parameters: This method takes index (The index from which the Long will be read) as a parameter.
Return Value: This method returns the Long value at the given index.
Exception: This method throws IndexOutOfBoundsException. If index is negative or not smaller than the buffer’s limit this exception is thrown.
Below are the examples to illustrate the get(Long index) method:
Example 1:
Java
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
int capacity = 3 ;
try {
LongBuffer ib = LongBuffer.allocate(capacity);
ib.put( 8 );
ib.put( 9 );
ib.put( 6 );
System.out.println("Original LongBuffer: "
+ Arrays.toString(ib.array()));
Long value0 = ib.get( 0 );
System.out.println("Long Value at index 0 : " + value0);
Long value1 = ib.get( 1 );
System.out.println("Long Value at index 1 : " + value1);
Long value2 = ib.get( 2 );
System.out.println("Long Value at index 2 : " + value2);
}
catch (IllegalArgumentException e) {
System.out.println("IllegalArgumentException catched");
}
catch (IndexOutOfBoundsException e) {
System.out.println("ReadOnlyBufferException catched");
}
catch (BufferUnderflowException e) {
System.out.println("Exception throws : " + e);
}
}
}
|
Output:
Original LongBuffer: [8, 9, 6]
Long Value at index 0: 8
Long Value at index 1: 9
Long Value at index 2: 6
Example 2:
Java
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
int capacity = 3 ;
try {
LongBuffer ib = LongBuffer.allocate(capacity);
ib.put( 6 );
ib.put( 8 );
ib.put( 12 );
System.out.println("Original LongBuffer: "
+ Arrays.toString(ib.array()));
Long value0 = ib.get( 0 );
System.out.println("Long Value at index 0 : " + value0);
Long value1 = ib.get( 1 );
System.out.println("Long Value at index 1 : " + value1);
System.out.println("Trying to get the Long"
+ " of index greater than its limit ");
Long value2 = ib.get( 4 );
System.out.println("Long Value at index 2 : " + value2);
}
catch (IllegalArgumentException e) {
System.out.println("IllegalArgumentException catched");
}
catch (IndexOutOfBoundsException e) {
System.out.println("Exception thrown: " + e);
}
catch (BufferUnderflowException e) {
System.out.println("Exception throws : " + e);
}
}
}
|
Output:
Original LongBuffer: [6, 8, 12]
Long Value at index 0: 6
Long Value at index 1: 8
Trying to get the Long of index greater than its limit
Exception thrown: java.lang.IndexOutOfBoundsException
Similar Reads
LongBuffer put() methods in Java
put(Long i) The put(Long i) method of java.nio.LongBuffer Class is used to write the given Long value into the newly created Long buffer at the current position, and then increments the position. Syntax: public abstract LongBuffer put(Long i) Parameters: This method takes the Long value i as a param
6 min read
LongBuffer equals() method in Java
The equals() method of java.nio.LongBuffer Class is used to check whether or not the given buffer is equal to another object. Two Long buffers are equal if, and only if, They have the same element type, They have the same number of remaining elements, and The two sequences of remaining elements, con
4 min read
LongBuffer compact() method in Java
The compact() method of java.nio.LongBuffer Class is used to compact the given buffer. The values between the buffer's current position and its limit are copied to the beginning of the buffer. The buffer's position is then set to n+1 and its limit is set to its capacity. The buffer's position is set
3 min read
LongBuffer slice() method in Java
The slice() method of java.nio.LongBuffer Class is used to creates a new Long buffer whose content is a shared subsequence of the given buffer's content. 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, an
3 min read
LongBuffer allocate() method in Java
The allocate() method of java.nio.LongBuffer Class is used to allocate a new Long buffer next to the existing buffer. 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 backing array
2 min read
LongBuffer arrayOffset() method in Java
The arrayOffset() method of java.nio.LongBuffer 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
3 min read
LongBuffer duplicate() method in Java
The duplicate() method of java.nio.LongBuffer Class is used to Create a new Long buffer that shares the given buffer's content. Syntax: public abstract LongBuffer duplicate() Return Value: This method returns the new Long buffer which is carrying the previous Long buffer content Below are the exampl
3 min read
LongBuffer wrap() method in Java
wrap(Long[] array) The wrap() method of java.nio.LongBuffer Class is used to wrap a Long array, Longo, a buffer. The new buffer will be backed by the given Long array; that is, modifications to the buffer will cause the array to be modified and vice versa. The new buffer's capacity and limit will be
4 min read
LongBuffer hasArray() method in Java
The array() method of java.nio.LongBuffer Class is used to Return the Long array that backs this buffer. Modifications to this buffer's content will cause the returned array's content to be modified, and vice versa. Invoke() the hasArray() method are used before invoking this method in order to ensu
2 min read
LinkedList get() Method in Java
In Java, the get() method of LinkedList is used to fetch or retrieve an element at a specific index from a LinkedList. Example 1: Here, we use the get() method to retrieve an element at a specified index. [GFGTABS] Java // Java Program to illustrate get() method import java.util.LinkedList; public c
2 min read