我已经在这个程序中遇到了几天的运行时错误,并且最终能够找到问题所在:push_back
函数由于某种原因从未完成,导致崩溃。
构造函数没问题,stringstream
很好(我cout
对它们进行了测试),但vctr[i].push_back(Pixel(r,g,b);
之后的任何内容都没有运行。该程序将立即超时。
此外,在尝试直接为矢量赋值时,它也会做同样的事情。例如:vctr[i][j] = Pixel(r,g,b);
问题代码:
bool Picture::filetoVector(ifstream& fin, vector<vector<Pixel> >& vctr, int& cmax){
string line, filetype;
istringstream ssin;
int width, height, r, g, b;
//if fin fails to open file, return false & quite function.
if(fin.fail()) return false;
//This for loop grabs filetype, # of rows & columns (height & width), and cmax.
for(int i = 0; getline(fin,line) && i < 3;i++){....}
//This loop reads to vctr.
for(int i = 0; i < height; i++){
for(int j = 0; j < width; j++){
getline(fin,line);
ssin.clear();
ssin.str(line);
ssin >> r >> g >> b;
//This is where things are breaking.
vctr[i].push_back(Pixel(r,g,b));
}
}
return true;
}
像素类:
struct Pixel{
int red, green, blue;
Pixel();
Pixel(int r, int g, int b);
};
Pixel非常基本,只包含3个整数和2个构造函数。 Pixel()设置红色,绿色和&amp;蓝色为零,Pixel(int r,int g,int b)将红色设置为r,将绿色设置为g,依此类推。
filetoVector的电话:
if(newpicture.filetoVector(filein, newvector, colorMax)){
cout << "Error: unable to read PPM file " << inputFilename;
return -1;
}
答案 0 :(得分:2)
欢迎使用StackOverflow Dante。你肯定没有发布足够的信息来获得快速而明智的答案。您应该发布更多代码,特别是:
vctr
的初始化方式。Pixel
个项目推送到向量很可能是不安全的)我试试&#34;盲目模式&#34;无论如何,当您执行vctr
时,您最有可能使用越界索引访问vctr[i]
:
所以你应该这样做:
vctr.resize(height)
在开始之前两个嵌套的for循环。要确保其中有height
个元素...