The clear() method of java.nio.CharBuffer Class is used to clear this buffer. While clearing this buffer following changes are done:
- the position is set to zero
- the limit is set to the capacity
- the mark is discarded.
Syntax:
public final DoubleBuffer clear()
Return Value: This method returns this DoubleBuffer instance after clearing all the data from it.
Below are the examples to illustrate the clear() method:
Examples 1:
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
try {
double [] darr = { 2.5 , 3.5 , 4.5 , 6.7 };
DoubleBuffer db
= DoubleBuffer.wrap(darr);
db.position( 2 );
db.mark();
db.position( 4 );
System.out.println( "position before reset: "
+ db.position());
db.clear();
System.out.println( "position after reset: "
+ db.position());
}
catch (InvalidMarkException e) {
System.out.println( "new position is less than "
+ "the position we "
+ "marked before " );
System.out.println( "Exception throws: " + e);
}
}
}
|
Output:
position before reset: 4
position after reset: 0
Examples 2:
import java.nio.*;
import java.util.*;
public class GFG {
public static void main(String[] args)
{
double [] carr = { 2.4 , 105.4 , 13.9 , 23 .45d };
DoubleBuffer db = DoubleBuffer.wrap(carr);
db.position( 3 );
System.out.println( "position before clear: "
+ db.position());
db.clear();
System.out.println( "position after clear: "
+ db.position());
}
}
|
Output:
position before clear: 3
position after clear: 0
Reference: https://docs.oracle.com/javase/9/docs/api/java/nio/DoubleBuffer.html#clear–
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 :
29 Jul, 2019
Like Article
Save Article