How to create StackOverflow error in java


StackOverflowError is a unchecked exception under Error Class in Throwable hierarchy, which may occur when the stack contains too many nested methods. The best example is an uncontrolled recursion function.

Let's see how to create our own StackOverflow exception :

Just create a function that calls itself:

StackOveflowExample.java
package org.code2care.stackoverflow;

public class StackOveflowExample {

	public static void main(String[] args) {

		stackOveflowMethod();	
	}

	public static void stackOveflowMethod() {
	
		stackOveflowMethod(); //recursion 
		
	}
}
exception in the thread "main" java.lang.StackOveflowError

	at org.code2care.stackoverflow.StackOveflowExample.stackOveflowMethod(StackOveflowExample.java:13)
	at org.code2care.stackoverflow.StackOveflowExample.stackOveflowMethod(StackOveflowExample.java:13)
	at org.code2care.stackoverflow.StackOveflowExample.stackOveflowMethod(StackOveflowExample.java:13)
	....
        ....
HashTags : #Exceptions #Error #Java #StackOverflow






Author Info:

Rakesh (He/Him) has a Masters Degree in Computer Science with over 15+ years of experience in Web and Application development. He is the author of insightful How-To articles for Code2care.

Follow him on: X

You can also reach out to him via e-mail: rakesh@code2care.org

Copyright Code2care© 2024 | Privacy Policy | About Us | Contact Us | Search