位置:首頁 > 軟件操作教程 > 編程開發(fā) > Java > 問題詳情

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);

}

}image.png

繼續(xù)查找其他問題的答案?

相關(guān)視頻回答
回復(fù)(0)
返回頂部