我写了一段代码,它会得到一个Segmentation fault
. 我不确定这是 Boost Coroutine 的错误还是我下面的代码:
#include <string>
#include <functional>
#include <vector>
#include <fstream>
#include <boost/coroutine/coroutine.hpp>
using namespace std;
template <class T>
using C = boost::coroutines::coroutine<T()>;
string foo(C<string>::caller_type & yield,
std::string fn, int cnt) {
std::ifstream f(fn);
// f.close();
int local_cnt = 0;
while(local_cnt < cnt) {
string l;
getline(f, l);
local_cnt ++;
yield(l);
}
f.close();
}
int main(int argc, char *argv[])
{
vector<C<string> > result;
for(int i = 0; i < 8192; ++i) {
C<string> obj(bind(foo, std::placeholders::_1, "test.txt", 3)); // line I
result.push_back(std::move(obj)); // line J
}
return 0;
}
test.txt
非常大,因此在发生段错误之前它永远不会得到 eof。我使用 1.55 的 Boost 并且有一些观察:
- 段错误发生在
line I
- 如果我在 yield 子句之前删除或移动
f.close()
,段错误就消失了。 - 如果我在代码中删除
line J
,段错误消失了。 - 如果我使用较小的数字而不是
8192
(比如 512),则段错误消失了。
这里有什么问题?