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

Java Integer類中的常量

提問人:劉旭39發(fā)布時間: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類型二進制補碼位數"+intSize);

System.out.println("int類型二進制補碼字節(jié)數"+intBytes);

}

}image.png

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

相關視頻回答
回復(0)
返回頂部