码迷,mamicode.com
首页 > 编程语言 > 详细

【C++】不要想当然使用resize

时间:2015-03-02 16:33:11      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

 

#include <iostream>     // std::cout
#include <vector>       // std::vector
using namespace std;

int main () {

    vector<vector<int> > theta;
    theta.resize(1, vector<int>(2, 1));
    theta.resize(2, vector<int>(3, 2));
    for(int i = 0; i < theta.size(); i ++)
    {
        for(int j = 0; j < theta[i].size(); j ++)
            cout << theta[i][j] << " ";
        cout << endl;
    }
  return 0;
}

本来目的是让第二次resize覆盖掉第一次的resize,得到2行3列的2

真实结果是:

技术分享

【C++】不要想当然使用resize

标签:

原文地址:http://www.cnblogs.com/ganganloveu/p/4308984.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!