IntBuffer toString() in Java

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

Syntax:

String java.nio.IntBuffer.toString()

This method returns a string summarizing the state of this buffer.

Parameters: NA

Returns: A summary string.

Exceptions: NA

Approach

Java

import java.nio.IntBuffer;

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

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

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

Output:

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


No comments:

Post a Comment