Integer越界会怎样
2011/11/24 10:44:23 tohsj0806 http://tohsj0806.iteye.com
我要评论(0)
- 摘要:今天有人问,i++,一直到2的32次方以后,i的值会是多少?我还真不知道,回归成0?C++好像就是0,那么java呢?实验如下:publicclassIntegerTest{publicstaticvoidmain(String[]args){System.out.println(Integer.MAX_VALUE+1);System.out.println(Integer.MIN_VALUE-1);}}结果:-21474836482147483647
- 标签:
今天有人问,i++,一直到2的32次方以后,i的值会是多少?我还真不知道,回归成0?C++好像就是0,那么java呢?
实验如下:
public class IntegerTest {
public static void main(String[] args) {
System.out.println(Integer.MAX_VALUE+1);
System.out.println(Integer.MIN_VALUE-1);
}
}
结果:
-2147483648
2147483647