Donc, j'ai ce qui suit:
std::vector< std::vector <int> > fog;
et je l'initialise très naïvement comme:
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);
}
Et cela semble très faux ... Y a-t-il une autre façon d'initialiser un vecteur comme celui-ci?
std::vector<int>::max_size()
. Ici