次のクラスがあり、デストラクタが呼び出されて a と b へのポインタを削除しようとするとエラーが発生します。それらは存在しないようです。これは問題を引き起こすコード行です:
unordered_map<string,Stock>* SDict = new unordered_map<string,S>();
SDict->insert(make_pair("38363",S("38363",i,w)));
ヘッダ
class O{
public:
O();
~O();
O(const O& tocopy);
O& operator=(const O& toassign);
private:
unordered_map<int,PQL>* b;
unordered_map<int,PQL>* a;
};
ソース
O::O(){
a = new unordered_map<int,PQL>();
b = new unordered_map<int,PQL>();
}
O::~O(){
delete b; //I get the exception here- b doesn't exist before the delete.
delete a;
}
O& O::operator=(const O& src){
if(this != &src){
delete b;
delete a;
b = new unordered_map<int,PQL>();
b = src.b;
a = new unordered_map<int,PQL>();
a = src.a;
}
return *this;
}
O::O(const O& src){
b = new unordered_map<int,PQL>();
b = src.b;
a = new unordered_map<int,PQL>();
a = src.a;
}
PQL は int が 3 つしかないクラスです。このエラーを引き起こしている明らかな何かがありますか?
クラス O は、次のクラスのデータ メンバーです。
ヘッダ
class S{
public:
S();
S(string sid, vector<string>* indexids, vector<double>* sw);
~S();
S(const S& tocopy);
S& operator=(const S& toassign);
private:
string sid;
O* o;
vector<Strategy*> ts;
unordered_map<string,double>* iw;
};
ソース
S::S(){}
S::S(string sid, vector<string>* iis, vector<double>* sw){
sid = sid;
iw = new unordered_map<string,double>();
o = new o();
if(iis->size() == sw->size()){
for(size_t i=0; i<iis->size(); i++){
string key = iis->at(i);
if(iw->count(key) == 0 ){
double weighting = sw->at(i);
iw->insert(make_pair(key,weighting));
}
else{
throw new exception();
}
}
}
else{
throw new exception();
}
}
S::S(const S& rhs){
sid = rhs.sid;
ts = rhs.ts;
o = new O();
o = rhs.o;
iw = new unordered_map<string,double>();
iw = rhs.iw;
}
S& S::operator=(const S& src){
if(this != &src){
delete o;
delete iw;
sid = src.sid;
ts = src.ts;
o = new o();
o = src.o;
iw = new unordered_map<string,double>();
iw = src.iw;
}
return *this;
}
S::~S(){
delete o;
delete iw;
}