The hasRemaining() method of java.nio.Buffer class is used to tell whether there are any elements between the current position and the limit.
Syntax:
public final boolean hasRemaining()
Returns: This method will return true if, and only if, there is at least one element remaining in this buffer. Below are the examples to illustrate the hasRemaining() method:
Example 1:
Java
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
int capacity = 10 ;
ByteBuffer bb = ByteBuffer.allocate(capacity);
bb.put(( byte ) 10 );
bb.put(( byte ) 20 );
bb.rewind();
Buffer buffer = (Buffer)bb;
boolean isRemain = buffer.hasRemaining();
if (isRemain)
System.out.println( "there is at least one "
+ "element remaining "
+ "in this buffer" );
else
System.out.println( "there is no "
+ "element remaining "
+ "in this buffer" );
}
}
|
Output:there is at least one element remaining in this buffer
Example 2:
Java
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
int capacity = 0 ;
ByteBuffer bb = ByteBuffer.allocate(capacity);
Buffer buffer = (Buffer)bb;
boolean isRemain = buffer.hasRemaining();
if (isRemain)
System.out.println( "there is at least one "
+ "element remaining"
+ " in this buffer" );
else
System.out.println( "there is no "
+ "element remaining"
+ " in this buffer" );
}
}
|
Output:there is no element remaining in this buffer