Estoy estudiando los operadores bit a bit (bitwise) y para comprenderlo mejor hice un pequeño programa:
class Shift {
public static void main (String args[]) {
short b = 16384;
for (int t = 32768; t > 0; t = t/2) {
if ((b&t) !=0) System.out.print("1 ");
else System.out.print ("0 ");
}
System.out.println();
b = (short)(b+2);
for (long t = 2147483648L; t > 0; t = t/2) {
if ((b&t) != 0) System.out.print ("1 ");
else System.out.print ("0 ");
}
System.out.println();
}
}
La salida de este código me da:
C:\>java Shift
0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0
¿Por qué el segundo for me devuelve un int?
Gracias.