IntBuffer duplicate() in Java

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

Syntax:

IntBuffer java.nio.IntBuffer.duplicate()

This method creates a new int buffer that shares this buffer's content.

Parameters: NA

Returns: The new int buffer.

Exceptions: NA

Approach

Java

import java.nio.IntBuffer;

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

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

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

Output:

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


No comments:

Post a Comment