| Author |
Exceptions in java
|
anish reddy
Ranch Hand
Joined: Apr 19, 2008
Posts: 72
|
|
i want to know the exact differnce between out of memory exception and stack overflow exception.as per my idea one is thrown by jvm and other is by application.i want to know in a more detailed manner whats the differnce between above two.
|
 |
Ernest Friedman-Hill
author and iconoclast
Marshal
Joined: Jul 08, 2003
Posts: 24054
|
|
|
Well, one indicates that memory is full (there are too many objects in memory) and the other indicates that a thread's stack has overflowed (a method has called a method which called a method which called a method.... too many times.) These are two rather different things, yes?
|
[Jess in Action][AskingGoodQuestions]
|
 |
 |
|
|
subject: Exceptions in java
|
|
|