In this tutorial you will see how to create a float buffer by using wrap method of FloatBuffer class.
In this tutorial you will see how to create a float buffer by using wrap method of FloatBuffer class.In this tutorial, we will see how to create a float buffer by using wrap method of FloatBuffer class.
The java.nio.FloatBuffer class extends java.nio.Buffer class. It provides the following methods:
Return type | Method | Description |
static FloatBuffer | wrap(float[] array) | The wrap() method create a float buffer by wrapping the associated float array. |
import java.nio.*;
|
C:\>
java FloatWrapDemo Capacity of FloatBuffer : 255 |