vector <int> col(0);
vector<vector<int> > row(0);
for(i=0;i<10;i++)
col.push_back(some integer);
row.push_back(col);
col.clear();
有人能告诉我这里有什么问题吗?在col[]
向量中,没有错误,但是当我通过调试在最后一行之前进行下一条指令时,row[]
的大小从0变为1,但我不能从col[]
向量看到应该采用的值?
编辑:我试图把调试屏幕的屏幕截图,但声誉事件发生了。
答案 0 :(得分:0)
您的代码肯定没问题:
#include <iostream>
#include <vector>
using namespace std;
int main()
{
vector< int > col(0);
vector< vector<int> > row(0);
for(int i=0;i<10;i++)
col.push_back(i);
row.push_back(col);
col.clear();
std::cout << "row size is: " << row.size() << std::endl;
std::cout << "row 1st elem size is: " << row[0].size() << std::endl;
std::cout << "col size is: " << col.size() << std::endl;
return 0;
}
输出:
row size is: 1
row 1st elem size is: 10
col size is: 0
完全可以预料到这一点。可能是调试器中的错误(它可能不会显示实际的矢量大小)。