当前位置: 技术问答>java相关
int的最大值?
来源: 互联网 发布时间:2015-06-20
本文导语: java 中int的最大值为多大? String 最长为多长? | MIN_VALUE public static final int MIN_VALUE The smallest value of type int. The constant value of this field is -2147483648. ----------------------------------------------...
java 中int的最大值为多大?
String 最长为多长?
String 最长为多长?
|
MIN_VALUE
public static final int MIN_VALUE
The smallest value of type int. The constant value of this field is -2147483648.
--------------------------------------------------------------------------------
MAX_VALUE
public static final int MAX_VALUE
The largest value of type int. The constant value of this field is 2147483647.
public static final int MIN_VALUE
The smallest value of type int. The constant value of this field is -2147483648.
--------------------------------------------------------------------------------
MAX_VALUE
public static final int MAX_VALUE
The largest value of type int. The constant value of this field is 2147483647.
|
int的最大值=Integer.MAX_VALUE=2147483647
String的理论上限也应该是2147483647个字符。
String的理论上限也应该是2147483647个字符。
|
JAVA 中 INT最大值是 2147483647
String 最长好像没什么设定吧!
String 最长好像没什么设定吧!
|
int型最大可为:2147483647
String没有理论上的长度上限。
String没有理论上的长度上限。
|
运行如下代码,不就知道了:
int i=0;
while (true)
{i++;
System.out.println(i);
}
int i=0;
while (true)
{i++;
System.out.println(i);
}