你能举一个C++中堆栈溢出的例子吗?

Can you give an example of stack overflow in C++?(你能举一个C++中堆栈溢出的例子吗?)

本文介绍了你能举一个C++中堆栈溢出的例子吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你能举一个 C++ 中堆栈溢出的例子吗?除了递归情况:

Can you give an example of stack overflow in C++? Other than the recursive case:

void foo() { foo(); }

推荐答案

不涉及无限递归的典型情况是在堆栈上声明一个太大的自动变量.例如:

The typical case that does not involve infinite recursion is declaring an automatic variable on the stack that is too large. For example:

int foo()
{
    int array[1000000];

}

这篇关于你能举一个C++中堆栈溢出的例子吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:你能举一个C++中堆栈溢出的例子吗?

基础教程推荐