The limit() method of java.nio.CharBuffer Class is used to set this buffer’s limit. If the position is larger than the new limit then it is set to the new limit. If the mark is defined and larger than the new limit then it is discarded.
Syntax:
public CharBuffer limit(int newLimit)
Return Value: This method returns this buffer.
Below are the examples to illustrate the limit() method:
Examples 1:
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
CharBuffer charBuffer = CharBuffer.allocate( 4 );
charBuffer.append( 'a' );
charBuffer.append( 'b' );
System.out.println( "CharBuffer before "
+ "setting buffer's limit: "
+ Arrays.toString(
charBuffer.array())
+ "\nPosition: "
+ charBuffer.position()
+ "\nLimit: "
+ charBuffer.limit());
charBuffer.limit( 1 );
System.out.println( "CharBuffer before "
+ "setting buffer's limit: "
+ Arrays.toString(
charBuffer.array())
+ "\nPosition: "
+ charBuffer.position()
+ "\nLimit: "
+ charBuffer.limit());
}
}
|
Output:
CharBuffer before setting buffer's limit: [a, b,, ]
Position: 2
Limit: 4
CharBuffer after setting buffer's limit: [a, b,, ]
Position: 1
Limit: 1
Examples 2:
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
CharBuffer charBuffer
= CharBuffer.allocate( 5 );
charBuffer.append( 'a' );
charBuffer.append( 'b' );
charBuffer.append( 'c' );
charBuffer.mark();
System.out.println( "CharBuffer before "
+ "setting buffer's limit: "
+ Arrays.toString(
charBuffer.array())
+ "\nPosition: "
+ charBuffer.position()
+ "\nLimit: "
+ charBuffer.limit());
charBuffer.limit( 4 );
System.out.println( "CharBuffer before "
+ "setting buffer's limit: "
+ Arrays.toString(
charBuffer.array())
+ "\nPosition: "
+ charBuffer.position()
+ "\nLimit: "
+ charBuffer.limit());
}
}
|
Output:
CharBuffer before setting buffer's limit: [a, b, c,, ]
Position: 3
Limit: 5
CharBuffer after setting buffer's limit: [a, b, c,, ]
Position: 3
Limit: 4
Reference: https://docs.oracle.com/javase/9/docs/api/java/nio/CharBuffer.html#limit-int-
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
23 Jul, 2019
Like Article
Save Article