考虑以下代码。
public class Action {
private static int i=1;
public static void main(String[] args) {
try{
System.out.println(i);
i++;
main(args);
}catch (StackOverflowError e){
System.out.println(i);
i++;
main(args);
}
}
}
我得到了4338
正确的价值。捕获StackOverflowError
输出后接线如下。
4336
4337
4338 // up to this point out put can understand
433943394339 // 4339 repeating thrice
434043404340
4341
434243424342
434343434343
4344
4345
434643464346
434743474347
4348
434943494349
435043504350
在这里考虑现场演示。它可以正常工作到i=4330
. 实际上这是怎么发生的?
供参考:
我做了以下代码来了解这里发生了什么。
public class Action {
private static int i = 1;
private static BufferedWriter bw;
static {
try {
bw = new BufferedWriter(new FileWriter("D:\\sample.txt"));
} catch (IOException e) {
e.printStackTrace();
}
}
public static void main(String[] args) throws IOException {
bw.append(String.valueOf(i)+" ");
try {
i++;
main(args);
} catch (StackOverflowError e) {
bw.append(String.valueOf(i)+" ");
i++;
main(args);
}
}
}
现在以前的问题不存在。现在价值i
上升到16824744
正确并且运行得更远。我希望这可能会在i=2,147,483,647
没有问题的情况下运行到(int 的最大值)的值。
有一些问题println()
。下面也有类似的答案。但为什么?
真正的原因会是什么?