Tagged Questions
0
votes
2answers
32 views
java catching stack overflow, getting msg display and return issues
So I'm using this recursive method to calculate the product of two numbers by recursive addition. I know that big numbers overflow the stack and my intention is to catch the stack overflow exception ...
1
vote
2answers
407 views
Custom class causing a stack overflow in .NET's XML serializer
Okay, The post was getting way too long and contained way too much self corrects, so I'm rewriting it from start. If you want to read back, check the changelog.
The latest revision of the code can be ...
2
votes
1answer
144 views
StackOverflowException in overloaded methods
I'm trying to call overloaded method in code like this:
public abstract class BaseClass<T>
{
public abstract bool Method(T other);
}
public class ChildClass : BaseClass<ChildClass>
{
...
4
votes
7answers
979 views
StackOverflowException was unhandled
I'm having this error in my code
An unhandled exception of type 'System.StackOverflowException' occurred in MedCareProviderLibrary.dll
Here is a snippet of my code and where the error is coming ...
5
votes
5answers
2k views
How can I guarantee catching a EXCEPTION_STACK_OVERFLOW structured exception in C++ under Visual Studio 2005?
Background
I have an application with a Poof-Crash[1]. I'm fairly certain it is due to a blown stack.
The application is Multi-Threaded.
I am compiling with "Enable C++ Exceptions: Yes With SEH ...