Reverse and rotate the integer in binary format

static int reverse(int i)
Reversing the bits.
static int reverseBytes(int i)
Reversing the bytes.
static int rotateLeft(int i, int distance)
Rotating the bits by distance.
static int rotateRight(int i, int distance)
Rotating the bits by distance.

public class Main {
  public static void main(String[] args) {

    System.out.println(Integer.reverse(10));

  }
}

The output:


1342177280

public class Main {
  public static void main(String[] args) {

    System.out.println(Integer.rotateLeft(10,2));

  }
}

The output:


40
Home 
  Java Book 
    Essential Classes  

Integer:
  1. Integer class
  2. Max, min value of an integer type variable
  3. Create Integer using its constructors
  4. Return an integer value as byte, double, float, int, long and short
  5. Compare two integer values
  6. Decode a string and return an integer value
  7. Convert string to integer
  8. Convert integer to string
  9. Reverse and rotate the integer in binary format
  10. Bit oriented operation
  11. Return system property as integer
  12. Get the leading and trailing zeros
  13. Get the sign of an Integer
  14. Convert integer to binary, hexdecimal and octal format