MainClass.java Source code

Java tutorial

Introduction

Here is the source code for MainClass.java

Source

import java.nio.CharBuffer;

public class MainClass {
    public static void main(String[] argv) throws Exception {
        CharBuffer cb = CharBuffer.allocate(100);

        cb.put("This is a test String");

        cb.flip();

        // This throws an IllegalArgumentException
        cb.put(cb);

        System.out.println(cb);
    }
}