Mega Code Archive

 
Categories / Java Tutorial / Data Type
 

Integer reverseBytes( ) reverses the order of the bytes in num and returns the result

public class MainClass {   public static void main(String args[]) {       System.out.println(Integer.reverseBytes(10));       System.out.println(Integer.reverseBytes(-10));       System.out.println(Integer.reverseBytes(0));   } } 167772160 -150994945 0