I have a parsing function that parses an encoded length from a byte buffer, it returns the parsed length as an int, and takes an index into the buffer as an integer arg. I want the function to update the index according to what it's parsed, i.e. want to pass that index by reference. In C I'd just pass an int *.
What's the cleanest way to do this in Java?
I'm currently looking at passing the index arg. as an int[], but it's a bit ugly.
|
|
||||
|
You can try using |
|||||
|
|
Wrap the byte buffer and index into a ByteBuffer object. A ByteBuffer encapsulates the concept of a buffer+position and allows you to read and write from the indexed position, which it updates as you go along. |
|||||
|
|
This isn't possible in Java. As you've suggested one way is to pass an |
|||
|
|
|
You cannot pass arguments by reference in Java. What you can do is wrap your integer value in a mutable object. Using Apache Commons' Note that |
|||
|
|
Integeris immutable. – Yuval Adam Jul 24 '10 at 17:36