Java CharBuffer.get()
Syntax
CharBuffer.get() has the following syntax.
public abstract char get()
Example
In the following code shows how to use CharBuffer.get() method.
/*ww w. j ava 2s.co m*/
import java.nio.CharBuffer;
public class Main {
public static void main(String[] args) {
CharBuffer cb1 = CharBuffer.allocate(5);
cb1.put(2,'j');
cb1.rewind();
System.out.println(cb1.get());
System.out.println(cb1.get());
System.out.println(cb1.get());
}
}
The code above generates the following result.