我在一段時間內還沒有完成C++。在一個向量中打印數據
我試圖得到一個矢量矢量打印數據。我得到以下錯誤:
Segmentation fault (core dumped)
我使用的是網上編譯運行的代碼。
#include <iostream> // std::cout
#include <algorithm> // std::for_each
#include <vector> // std::vector
void myfunctiontwo (int i) { // function:
std::cout << ' ' << i;
}
void myfunction (std::vector<int> myvector) { // function:
for_each (myvector.begin(), myvector.end(), myfunctiontwo);
}
int main() {
// create a vector of vectors.
std::vector< std::vector<int> > myvector;
// add some data
myvector[0].push_back(10);
myvector[1].push_back(20);
myvector[2].push_back(30);
std::cout << "myvector contains:";
for_each (myvector.begin(), myvector.end(), myfunction);
std::cout << '\n';
return 0;
}
它應該是std :: vector> myvector(3)? –
@PoiXen:對,對不起,我是盲人。但是看看[漂亮打印機](http://stackoverflow.com/q/4850473/596781):-) –