Open In App

DoubleBuffer mark() methods in Java with Examples

Last Updated : 29 Jul, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The mark() method of java.nio.DoubleBuffer Class is used to mark the current position of this DoubleBuffer as the mark of this buffer. Syntax:
public DoubleBuffer mark()
Return Value: This method returns this DoubleBuffer after setting the buffer's mark at the current position. Below are the examples to illustrate the mark() method: Examples 1:
Output:
position before reset: 4
position after reset: 2
Examples 2: To demonstrate InvalidMarkException
Output:
position before reset: 1

New position is less than the position marked before 
Exception throws: java.nio.InvalidMarkException
Reference: https://docs.oracle.com/javase/9/docs/api/java/nio/DoubleBuffer.html#mark--

Next Article
Practice Tags :

Similar Reads