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 byte buffer. |
| abstract FloatBuffer | duplicate() | The duplicate() method returns a duplicate buffer that share the content of available buffer. |
import java.nio.*; |
| C:\e>java FloatDuplicate Content in original buffer. 12.061 13.072 14.083 Content in duplicate buffer. 12.061 13.072 14.083 |
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.