8
初始化二维std :: vector
因此,我有以下内容: 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); } 感觉很不对劲...还有另一种初始化向量的方法吗?