我正在为个人项目编写 C++ CSV 类,但偶然发现了一个奇怪的错误。在我的测试程序中,我有代码:
for( int i = 0; i < 3; ++i ) {
std::cout << i << ": ";
std::vector<std::string> results = test.get_row();
for( auto it = results.begin(); it != results.end(); ++it ) {
std::cout << *it << " ";
}
std::cout << std::endl;
}
并得到结果:
: row0 row1 row2
: blah0 blah1 blah2
2: blah3 blah4 blah5
但我应该得到:
0: row0 row1 row2
1: blah0 blah1 blah2
2: blah3 blah4 blah5
关于为什么我i
在前两次运行中没有获得价值的任何想法?
注意:我使用的是 g++ 4.4.7