• 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

  • 相关阅读:
    ObjectC&&Swift 渐变色算法实现
    【iOS数据存储】iOS文件系统介绍
    1 、Quartz 2D绘图基础
    iOS 常用框架列表
    【Foundation Frame】Struct
    【Foundation Frame】NSMutableArray
    【Foundation Frame】NSDictionary/NSMutableDictionary
    【Foundation Frame】NSString
    【Foundation Frame】NSArray
    在vue项目中使用自己封装的ajax
  • 原文地址:https://www.cnblogs.com/feifanrensheng/p/8711601.html
Copyright © 2020-2023  润新知