zoukankan      html  css  js  c++  java
  • c++中用vector创建多维数组的初始化方法

    最近调试一个程序,在使用vector声明一个二维数组时出现错误。错误的方法如下所示:

    std::vector<std::vector<double> > sphereGrid;
    int gridLA = angleSpanLA / angelAccuracy;
    int gridLO = angleSpanLO / angelAccuracy;
    sphereGrid = std::vector<std::vector<double> >( gridLA , gridLO );

    会出现如下报错:

    /home/zn/VanishingPointDetection/src/VPDetection.cpp: In member function ‘void VPDetection::getSphereGrids(std::vector<std::vector<double> >&)’:
    /home/zn/VanishingPointDetection/src/VPDetection.cpp:156:66: error: no matching function for call to ‘std::vector<std::vector<double> >::vector(int&, int&)’
      sphereGrid = std::vector<std::vector<double> >( gridLA , gridLO );

    这就是因为二维数组的初始化出现了错误,一般的话要通过下面这种方式初始化

    定义空二维vector,再赋值
    vector<vector <int> > ivec(m ,vector<int>(n)); //m*n的二维vector,注意两个 "> "之间要有空格!

    所以我们要把程序改为

    std::vector<std::vector<double> > sphereGrid;
    int gridLA = angleSpanLA / angelAccuracy;
    int gridLO = angleSpanLO / angelAccuracy;
    sphereGrid = std::vector<std::vector<double> >( gridLA , std::vector<double>(gridLO)  );

    就可以解决错误,通过这次改错更加认识到了c++之vector的用法。

    参考:https://blog.csdn.net/ldkcumt/article/details/51396980

    https://blog.csdn.net/oNever_say_love/article/details/50763238

  • 相关阅读:
    初学angular
    C#二维数组及其本质(转)
    蓝桥杯之递归算法
    同时安装Office2016和Visio2016
    蓝桥杯之暴力破解、枚举
    NAT(地址解析协议)
    云中继
    ACL(访问控制列表)
    虚拟链路(virtual-link)
    单臂路由
  • 原文地址:https://www.cnblogs.com/feifanrensheng/p/8711601.html
Copyright © 2011-2022 走看看