Java Integer类中的常量
提问人:刘旭39发布时间: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类型二进制补码字节数"+intBytes);
}
}
继续查找其他问题的答案?
相关视频回答
回复(0)
点击加载更多评论>>