Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.nio.IntBuffer;
import java.util.Arrays;

public class Main {
    public static void main(String[] args) {
        IntBuffer bb = IntBuffer.allocate(10);
        bb.put(100);

        bb.rewind();

        IntBuffer intBuffer2 = IntBuffer.allocate(10);

        intBuffer2.put(bb);

        System.out.println(Arrays.toString(intBuffer2.array()));

    }
}