For example, If I have a double,
double x = 123.567
and I turn it to binary form, like
String y = Long.toBinaryString(Double.doubleToLongBits(x))
Now, I stuck in how to get each single bits from this binary(String y). Or Can I get those single bit from double x
directly. Because String can not use logic and, I can't figure any idea about this.