Suppose we have an object of Thread inside the main method.
CustomThread thread = new CustomThread();
thread.start();
thread.join();
// a lot of others statements
What happens if an uncaught exception occurs inside thread?
Suppose we have an object of Thread inside the main method.
CustomThread thread = new CustomThread();
thread.start();
thread.join();
// a lot of others statements
What happens if an uncaught exception occurs inside thread?
Create a free account to access the full topic