public class StackOverflow {
public static void main(String[] argv) {
StackOverflow so = new StackOverflow();
so.run(0);
}
private void run(int i) {
System.out.println("depth: "+i);
run(i+1);
}
}
public static void main(String[] argv) {
StackOverflow so = new StackOverflow();
so.run(0);
}
private void run(int i) {
System.out.println("depth: "+i);
run(i+1);
}
}
- relates to
-
JDK-4377621 exception stack overflow Error ID: 4F533F57494E13120E43505002D4
-
- Closed
-
-
JDK-4402735 [server] stack yellow zone not re-enabled after a StackOverflowError
-
- Closed
-