FloatBuffer has the method capacity() which tells us the maximum capacity of the FloatBuffer. However, it does not tell us how many elements are in that buffer. So how can I determine the number of elements in a FloatBuffer? I am trying to determine if my FloatBuffer is full or partially full.
| |||
|
feedback
|
|
I can never keep the NIO buffer's straight in my head, but
(Or just use | |||||||||||
feedback
|
|
You can't. As with an array of floats you can get the length but which ones have been set is determined by the application. | |||
|
feedback
|
Wouldn't it just be the position() ? To determine if you can write more to it, just test for fb.remaining() > 0 or fb.hasRemaining(). | |||
|
feedback
|