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.
|
|
|||||||||
|
|
|
Here's one quick-and-dirty way to convert from a
example:
|
||
|
|
|
You can cast |
||
|
|
|
|
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. |
||
|
|
|
If you want a bit pattern, I think you're better off using bitmasks e.g.
etc. See here for more examples. |
|||
|
|
|
No, you can't do this with a |
||
|
|
|
|
That syntax is not legal in Java. What is it you are after? If you are looking for the length, you can do this:
|
||
|