今天我遇到了一个非常奇怪的错误。我创建了一个最小的例子:
https://gist.github.com/SuperV1234/5792381
基本上,在某些机器上,“测试 2”段错误;在其他人身上,它按预期工作。在我的台式计算机上,它可以在 Windows 8 x64 和 Linux Mint 15 x64 上运行。在我的笔记本电脑上,它在 Windows 8 x64 和 Linux Mint 15 x64 上都会出现段错误。
令我困惑的是:
- 它在某些机器上工作并在其他机器上崩溃的事实
- 简单地将 lambda 内容包装在另一个函数中的事实修复了段错误
这是编译器错误吗?Game::test1()
或者和 lambda body有区别吗?
// Test 1 works
// Test 2 segfaults... on some machines.
// Compiled with -std=c++11, GCC 4.8.1, tested both on native Linux, Windows and Wine
#include <iostream>
#include <functional>
#include <vector>
using namespace std;
struct Command
{
function<void()> func;
void reset() { }
};
struct Timeline
{
vector<Command*> commands;
void clear()
{
for(auto& c : commands) delete c;
commands.clear();
}
void reset() { for(auto& c : commands) c->reset(); }
};
struct Game
{
Timeline timeline;
void test1() { timeline.clear(); timeline.reset(); }
void run()
{
{
cout << "Starting test 1..." << endl;
Command* cmd{new Command};
cmd->func = [&]{ test1(); };
timeline.commands.push_back(cmd); cmd->func();
cout << "Successfully ending test 1..." << endl;
}
{
cout << "Starting test 2..." << endl;
Command* cmd{new Command};
cmd->func = [&]{ timeline.clear(); timeline.reset(); };
timeline.commands.push_back(cmd); cmd->func();
cout << "Successfully ending test 2..." << endl;
}
}
};
int main() { Game{}.run(); return 0; }
此处提供了真实代码(不是最小示例):https ://github.com/SuperV1234/SSVOpenHexagon/commit/77784ae142768f964666afacfeed74300501ec07
来自真实代码的回溯:http: //paste2.org/W7yeCxOO