Java Integer類中的常量
提問人:劉旭39發(fā)布時(shí)間:2020-11-26
//Integer類中的常量
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類型最大值為"+maxIntValue);
System.out.println("int類型最笑值為"+minIntValue);
System.out.println("int類型二進(jìn)制補(bǔ)碼位數(shù)"+intSize);
System.out.println("int類型二進(jìn)制補(bǔ)碼字節(jié)數(shù)"+intBytes);
}
}
繼續(xù)查找其他問題的答案?
相關(guān)視頻回答
點(diǎn)擊加載更多評(píng)論>>