Mega Code Archive

 
Categories / Java Tutorial / Data Type
 

The number of bits used to represent an int value in twos complement binary form

public class MainClass {   public static void main(String[] arg) {     System.out.println(Integer.SIZE);      } } 32