Can you give an example of stack overflow in C++? Other than the recursive case:
void foo() { foo(); }
|
3
|
Can you give an example of stack overflow in C++? Other than the recursive case:
|
||||||||||||
|
|
|
The typical case that does not involve infinite recursion is declaring an automatic variable on the stack that is too large. For example:
|
||
|
|
|
|
Compile-time example:
|
||
|
|
|
|
If you want to generate an explicitly non-recursive program to result in a stack overflow by function calls:
Sample output:
Sample usage:
At least on my system, the call stack seems to be 174602, so you'll need to set the argument to |
||
|
|
|
|
You could also get a stack overflow if you try to put large objects on the stack (by-value). |
||
|
|
|
|
I can't believe we left off the greatest recursion example of all time, factorial!
On OS X 10.5.8 with GCC 4.0.1:
Unfortunately, OS X reports a "Segmentation fault" instead of a "Stack overflow". Too bad. |
||
|
|
|
|
As per edit :-)
Also, I believe you can get stack overflow if you try to allocate more space than maximum thread stack size ( 1MB by default in VS), so something like |
|||
|
|
|
Here's one that might happen in practice:
This overflows the stack for negative |
|||
|
|
|
|
Infinite recursion:
void infiniteFunction()
{
infiniteFunction();
}
int main()
{
infiniteFunction();
return 0;
}
|
||
|
|
|
|
Keep trying to return main until the stack runs out?
|
||||||||||
|
|
|
This example shows uncontrolled recursion. Eventually, the stack spaced allocated to this process will be completely overwritten by instances of bar and ret...
|
||
|
|
|
|
void function() { function(); } |
||||||||||||||||
|
|
|
Please see Stack overflow - Wikipedia. I have linked directly to the examples section. |
||
|
|