Is there anything I can cast a boolean array to in Java? It would be nice if I could say
boolean[] bools = new boolean[8];
int j = (int)bools;
But I'm not sure if that's feasible in Java.
|
|
No, you can't do this with a |
|||
|
|
|
If you want a bit pattern, I think you're better off using bitmasks e.g.
etc. See here for more examples. |
||||
|
|
|
the size of Java booleans is implementation specific, and it's probably not a single bit in any case. if you want an easy way to manipulate bits, take a look at BitSet. |
|||
|
|
Here's one quick-and-dirty way to convert from a
example:
|
|||
|
|