Hi,
I want to put arrays of bytes of different lengths in a vector, but if I got
it right only objects can be placed in a vector so how do I convert an array
to and from an object? Ie. if I were to put an atomic datatype like int in a
vector it could be done using the wrapperclass Integer, like v.addLast(new
Integer(64)). What's the corresponding action for arrays?
/Seamoon
Christophe Vanfleteren - 01 Mar 2004 21:57 GMT
> Hi,
>
[quoted text clipped - 5 lines]
>
> /Seamoon
Have you even tried to do what you want?
Hint: all arrays are Objects in java.

Signature
Kind regards,
Christophe Vanfleteren
Lloyd - 03 Mar 2004 00:31 GMT
> Hi,
>
[quoted text clipped - 3 lines]
> vector it could be done using the wrapperclass Integer, like v.addLast(new
> Integer(64)). What's the corresponding action for arrays?
An array _is_ an object.