See topic - do you see any problem with this? I could also do new String(byte[]) and hash by String but it is more straightforward to use byte[]
|
|
|
|
|
|
|
The problem is that
will not match in a
|
||
|
|
|
|
Arrays.toString(bytes) |
||
|
|
|
|
I see problems since you should use Arrays.equals and Array.hashCode, in place of default array implementations |
||||
|
|
|
It's okay so long as you only want reference equality for your key - arrays don't implement "value equality" in the way that you'd probably want. For example:
prints something like:
(The actual numbers are irrelevant; the fact that they're different is important.) Assuming you actually want equality, I suggest you create your own wrapper which contains a
Note that if you change the values within the byte array after using the |
||||||||||
|
|
|
I believe that arrays in Java do not necessarily implement the Therefore, I recommend against using |
||||||
|
