FloatBuffer API:
The java.nio.FloatBuffer class extends java.nio.Buffer class. It provides the following methods:
| Return type | Method | Description |
| static FloatBuffer | allocate( int capacity) | The allocate(..)method allocate a new float buffer. |
| final boolean | hasRemaining() | The hasRemaining() method tell whether there are any elements in buffer or not. |
| final Buffer | rewind() | The rewind() method set the position zero and content not change. |
import java.nio.*;
|
| C:\>java FloatBufferRewind Contents in float buffer : 12.05,21.9,875.976,34.09,123.453 After using rewind method content of float buffer : 12.05,21.9,875.976,34.09,123.453, |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.