我看过很多关于这个错误的帖子。但我没有动态保留内存或在析构函数中做任何事情:这个程序是用于在操作系统中选择柱面的 SSJF 算法。
我有一个名为 IO 的简单类:
class IO
{
public:
IO();
IO(int,int);
void setIO(int,int);
~IO();
int trackNo;
int arrival;
int start;
int end;
bool finished;
};
这是该类的实现:
IO::IO(int arr, int tNum)
{
this->arrival = arr;
this->trackNo = tNum;
this->start = 0;
this->end = 0;
}
IO::IO()
{
}
IO::~IO()
{
}
void IO::setIO(int t1, int t2)
{
this->trackNo = t1;
this->arrival = t2;
}
最后是主程序的一部分:
list<IO> myList;
....
myList.push_back(tmpIO); //Add to the list
...
list<IO> wt_list;
后来我尝试做一些操作。我删除了一些不相关的部分。
//list<IO>::iterator itMin;
while(myList.size()>0)
{
//If it is the first input just get it
if(f)
{
IO selected = myList.front();
curr_time += selected.arrival + selected.trackNo;
f=false;
cout << selected.arrival<<endl;
lastPos = selected.trackNo;
myList.pop_front();
}
//Check if there is any item to add to queue
while(myList.front().arrival < curr_time)
{
wt_list.push_back(myList.front());
myList.pop_front(); //Error is coming from this line
}
while(wt_list.size()>0)
{
}
错误信息:
malloc: * 对象 0x10f68b3e0 的错误:未分配被释放的指针 *在 malloc_error_break 中设置断点以进行调试
任何人都可以帮助我并解释为什么我会收到此错误以及如何跳过它?