11-05-2009 10:54 AM
I'm getting StackOverflowErrors on seemingly trivial recursive functions.
Should I be avoiding recursion, or?
11-05-2009 11:03 AM
Every time I have had a stack overflow, it turned out to be my code. ![]()
11-05-2009 11:35 AM
How deep does your code recurse? The usual cause of StackOverFlows is infinite recursion (e.g., due to a bug).
11-05-2009 03:48 PM
You might like to share your "trivially recursive functions", so we can test and try and reproduce.