CharBuffer limit() methods in Java with Examples
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:
// Java program to demonstrate // limit() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // defining and allocating CharBuffer // using allocate() method CharBuffer charBuffer = CharBuffer.allocate( 4 ); // append char value in CharBuffer // using char() method charBuffer.append( 'a' ); charBuffer.append( 'b' ); // print the char buffer System.out.println( "CharBuffer before " + "setting buffer's limit: " + Arrays.toString( charBuffer.array()) + "\nPosition: " + charBuffer.position() + "\nLimit: " + charBuffer.limit()); // Limit the CharBuffer // using limit() method charBuffer.limit( 1 ); // print the char buffer System.out.println( "CharBuffer before " + "setting buffer's limit: " + Arrays.toString( charBuffer.array()) + "\nPosition: " + charBuffer.position() + "\nLimit: " + charBuffer.limit()); } } |
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:
// Java program to demonstrate // limit() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // defining and allocating CharBuffer // using allocate() method CharBuffer charBuffer = CharBuffer.allocate( 5 ); // append char value in CharBuffer // using char() method charBuffer.append( 'a' ); charBuffer.append( 'b' ); charBuffer.append( 'c' ); // mark will be going to discarded by limit() charBuffer.mark(); // print the char buffer System.out.println( "CharBuffer before " + "setting buffer's limit: " + Arrays.toString( charBuffer.array()) + "\nPosition: " + charBuffer.position() + "\nLimit: " + charBuffer.limit()); // Limit the charBuffer // using limit() method charBuffer.limit( 4 ); // print the char buffer System.out.println( "CharBuffer before " + "setting buffer's limit: " + Arrays.toString( charBuffer.array()) + "\nPosition: " + charBuffer.position() + "\nLimit: " + charBuffer.limit()); } } |
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-
Recommended Posts:
- ByteBuffer limit() methods in Java with Examples
- DoubleBuffer limit() methods in Java with Examples
- Buffer limit() methods in Java with Examples
- CharBuffer flip() methods in Java with Examples
- CharBuffer charAt() methods in Java with Examples
- CharBuffer order() methods in Java with Examples
- CharBuffer length() methods in Java with Examples
- CharBuffer mark() methods in Java with Examples
- CharBuffer chars() methods in Java with Examples
- CharBuffer append() methods in Java with Examples
- CharBuffer clear() methods in Java with Examples
- CharBuffer position() methods in Java with Examples
- CharBuffer reset() methods in Java with Examples
- CharBuffer read() methods in Java with Examples
- CharBuffer subSequence() methods in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.