IntBuffer clear() in Java

clear(): This method is available in java.nio.IntBuffer class of Java.

Syntax:

IntBuffer java.nio.IntBuffer.clear()

This method clears this buffer.

Note: The position is set to zero, the limit is set to the capacity, and the mark is discarded.

Parameters: NA

Returns: This buffer.

Exceptions: NA

Approach

Java

import java.nio.IntBuffer;

public class IntBufferclear {
    public static void main(String[] args) {

        int array[] = { 1, 2, 3, 4 };
        IntBuffer lb = IntBuffer.wrap(array);

        System.out.println(lb.clear());
    }
}

Output:

java.nio.HeapIntBuffer[pos=0 lim=4 cap=4]


No comments:

Post a Comment