919293949596979899100101
// Using LBuffer LBuffer lbuf = new LBuffer(1000); lbuf.putInt(0, 10); int ten = lbuf.getInt(0); lbuf.address(); // memory address lbuf.release(); // deallocate the memory System.out.println("done."); } }