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.

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

I can never keep the NIO buffer's straight in my head, but remaining() might be what you're after...

Returns the number of elements between the current position and the limit.

(Or just use hasRemaining() if you're after a simple Boolean...)

link|improve this answer
I'm getting 0 for remaining() so I must be doing something wrong. I know there is data in there. – 0A0D Aug 29 '11 at 20:35
1  
@Code Monkey: Have you called flip() after writing? Please post a short but complete program demonstrating the problem... – Jon Skeet Aug 29 '11 at 20:36
Flip was it. Thanks. Called flip() after put() then checked remaining(). – 0A0D Aug 29 '11 at 20:38
Depending on what you're doing flip() may not be what you're after, since it resets the limit to the current position. You should look at rewind, though without further information everything's possible (maybe it's just limit() or even position()) – Voo Aug 29 '11 at 21:56
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.

link|improve this answer
feedback

So how can I determine the number of elements in a FloatBuffer?

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().

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.