所以,我有以下内容:
std::vector< std::vector <int> > fog;
我很天真地初始化它,比如:
for(int i=0; i<A_NUMBER; i++)
{
std::vector <int> fogRow;
for(int j=0; j<OTHER_NUMBER; j++)
{
fogRow.push_back( 0 );
}
fog.push_back(fogRow);
}
而且感觉很不对劲......有没有另一种方法来初始化这样的向量?