Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 630053
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T19:48:50+00:00 2026-05-13T19:48:50+00:00

Does a JVM exit when a stack overflow exception occurs in one of the

  • 0

Does a JVM exit when a stack overflow exception occurs in one of the executing threads?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T19:48:51+00:00Added an answer on May 13, 2026 at 7:48 pm

    You can try it for yourself using, for example with the following code (a new thread is spawned and started and calls a() which calls itself recursively as to trigger a stack overflow while another thread prints something to the console):

    public class SO {
    
        private static void a() {
            a();
        }
    
        public static void main(String[] args) throws InterruptedException {
        final Thread t = new Thread( new Runnable() {
            public void run() {
                a();
            }
        });
        t.start();
        while ( true ) {
            Thread.sleep( 2000 );
            System.out.println( "I'm still running @ " + System.currentTimeMillis() );
        }
    }
    

    You’ll see your stack overflow error:

    Exception in thread "Thread-1" java.lang.StackOverflowError

    and you’ll also see that the printing thread keeps happily printing along.

    Also note that if the EDT thread dies, it is relaunched automagically.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How does the JVM handle a primitive long, which is 64bits, on a 32bit
Why does the jvm require around 10 MB of memory for a simple hello
How does the JVM make it's windows, i know it has it's jar files
Does switching activities in Android start a fresh JVM? It seems like each activity
Does someone know if it is possible to modify the JVM settings at runtime
Does File.deleteOnExit() guarantee that the file is deleted even if the JVM is killed
Does Tomcat sandbox apps, like running them on a separate JVM or of some
How does JVM or for that matter CLR (Common language runtime) handles divided by
I was curious about what all locations JVM looks for executing a program? I'm
I find myself needing to call back into the JVM from arbitrary native threads

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.