0
#include <stack>
#include <functional>
int main()
{
std::stack<std::function<int()>> s;
s.push(main);
return s.top()();
}
我得到以下診斷:棧運行時錯誤
result: runtime error time: 0.04s memory: 39704 kB signal: 11 (SIGSEGV)
這是怎麼回事?