Consider the following code.
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);
}
}
}
I am getting i value up to 4338
correctly. After catching the StackOverflowError
output getting wired as follows.
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
Consider Live demo here. It is working correctly up to i=4330
. Actually how this happen?
FYI:
I did following code to realize what is happening here.
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);
}
}
}
Now previous issue not there. now value of i
up to 16824744
correct and and runs further. I am hopping this may runs up to value of i=2,147,483,647
(max value of int) without an issue.
There is some issue with println()
. There are similar answers bellow too. But why?
What will be the actual reason?
The bottom line is that
StackOverflowError
is an error, not an exception. You are handling an error, not an exception.So the program has already crashed when it enters the catch block.Regarding the strange behaviour of the program, below is the explanation on basis of java buffers from this official doc:The
System.out.println()
internally calls thePrintStream
which is buffered. You don't loose any data from the buffer, it gets all written to the output( terminal in your case) after it fills up, or when you explicitly call flush on it.Coming back to this scenario, it depends on the internal dynamics of how much the stack is filled up and how many print statements were able to get executed from the catch in
main()
and those number of characters were written to the buffer. Here after the first try is executed, i.e. in the event of first occurence of the stack overflow, the first System.out.println() fails to print the new line so it flushed the buffer with remaining characters.Note the absence of newline characters in
433943394339
. It indicates that something wrong happens insideSystem.out.println()
.The essential point here is that
System.out.println()
requires some stack space to work, so thatStackOverflowError
is thrown fromSystem.out.println()
.Here is your code with marked points:
Let's imagine what happens at level N of recursion when i =
4338
:4338
. Output4338\n
i
is incremented to4339
4339
, butSystem.out.println()
throws aStackOverflowError
before it prints a newline. Output4339
StackOverflowError
is caught at level N + 1, statement (3) tries to print4339
and fails for the same reason again. Output4339
4339
and succeeds (newline is printed correctly). Output4339\n
i
is incremented and control flow enters level N + 1 again at (4)After this point the situation repeats with
4340
.I'm not sure why some numbers are printed correclty between sequences without newlines, perhaps its related to internal work of
System.out.println()
and buffers it uses.If the execution of
println
(or one of the methods called by it) causes a stack overflow, you will print the samei
value from the catch clause of the enclosingmain
incarnation.The exact behavior is rather unpredictable as it depends on the stack space still available.
According to my test:
When Exception is thrown by try Block,
i
has same value when it comes in catch block (as its not incremented due to exception)and then inside catch block same exception is thrown and which is again caught by catch block !
I tried Following Code
Output :
when try block throws exception it is caught by catch block but when it goes to
System.out.println("Catch " + i);
again Exception is thrown 4 times (in my eclipse) Without printingSystem.out.println("Catch " + i);
As in above output, i have tested it by printing "Before" Text which is printed four times before it prints
System.out.println("Catch " + i);
axtavt Answer is very complete but I'd like to add this:
As you may know the stack is used to store the memory of variables, based on that you cannot create new variables when you reach the limit, it is true that System.out.println will need some stack resources
Then after calling the print, the error does not allow you to even call the newLine, it breaks again right on the print. Based on that you can make sure that's the case by changing your code like this:
Now you will not ask the stack to handle the new lines, you will use the constant "\n" and you may add some debugging to the exception printing line and your output will not have multiple values in the same line:
And it will keep broken until get some resources to allocate new data and pass to the next i value.
What I suspect being happening is this: