我正在写一段代码,我使用一个三维boost多数组来保存坐标。但是我总是在某个时候遇到一个分段错误。boost多数组的大小是如何被限制的,我怎样才能绕过这些限制呢?
以下是重现该问题的简化测试代码:
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <string>
#include <algorithm>
#include <map>
#include <boost/multi_array.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/algorithm/string.hpp>
#include "Line.h"
#include <boost/algorithm/string/classification.hpp>
#include <boost/algorithm/string/split.hpp>
typedef struct {
Eigen::Vector3d coords;
int gpHostZone;
int gpHostFace;
int calculated;
} Vertex;
class LGR {
public:
LGR (int i, int j, int k) :
grid(boost::extents[i][j][k])
{
};
std::string name;
std::vector<int> hostZones;
std::vector<int> refine;
boost::multi_array<Vertex*, 3> grid;
std::vector<double> data;
};
int main(void){
LGR lgr(11,11,21);
std::cout << lgr.grid.size();
std::vector<LGR> v;
std::vector<Vertex> vertexDB;
for(int i = 0; i < 1; i++ ){
for(int j = 0; j < lgr.grid.size(); j++ ){
for(int k = 0; k < lgr.grid[0].size(); k++ ){
for(int l = 0; l < lgr.grid[0][0].size(); l++ ){
Vertex coord;
coord.coords << i,j,k;
coord.gpHostZone = 0;
coord.gpHostFace = 0;
coord.calculated = 0;
vertexDB.push_back(coord);
lgr.grid[j][k][l] = &(vertexDB.back());
}
}
}
for(int j = 0; j < lgr.grid.size(); j++ ){
for(int k = 0; k < lgr.grid[0].size(); k++ ){
for(int l = 0; l < lgr.grid[0][0].size(); l++ ){
std::cout << "At ("<< i << ","<< j << ","<< k << "," << l << ")\n";
std::cout << lgr.grid[j][k][l]->coords<<"\n\n";
}
}
}
}
return 1;
}
请不要评论包含的内容。我只是从实际代码中复制和粘贴。大部分可能在这里不需要。维度来自一真实的例子,所以我实际上需要那些类型的维度(可能更多)。
1条答案
按热度按时间pbpqsu0x1#
下面是一个明确的问题,它会导致未定义的行为,与
boost::multiarray
无关。这些行:
调整
vertexDB
向量的大小,然后将指向向量中最后一项的指针存储到lgr.grid[j][k][l]
。这样做的问题是,指向向量中项的指针和迭代器可能会变得无效,因为在调整向量大小时,向量必须重新分配内存。这在后面的循环中表现出来:
不保证您之前分配的地址有效。
一个快速的解决方法是使用
std::list<Vertex>
,因为向std::list
添加项不会使迭代器/指针失效。