Java Integer類(lèi)中的常量
//Integer類(lèi)中的常量
public class IntegerConstant{
public static void main(String[] args) {
int maxIntValue = Integer.MAX_VALUE;
int minIntValue = Integer.MIN_VALUE;
int intSize = Integer.SIZE;
int intBytes = Integer.BYTES;
System.out.println("int類(lèi)型最大值為"+maxIntValue);
System.out.println("int類(lèi)型最笑值為"+minIntValue);
System.out.println("int類(lèi)型二進(jìn)制補(bǔ)碼位數(shù)"+intSize);
System.out.println("int類(lèi)型二進(jìn)制補(bǔ)碼字節(jié)數(shù)"+intBytes);
}
}
點(diǎn)擊加載更多評(píng)論>>