プログラムを実行すると、プログラムが崩壊します。行をコメントアウトするif((str1->compare(*str2))==0 ){...}
と、問題なく動作します。比較後に作成および削除する文字列 * の 2 つの要素を比較する方法がわかりません。
main.cpp: In function `int operator==(const Integer&, const Integer&)':
main.cpp:18: warning: taking address of temporary
main.cpp:19: warning: taking address of temporary
整数.h
class Integer {
public:
Integer(int val, char *opis):m_val(val),m_opis(opis)
{
this->m_val = 0;
this->m_opis = strdup("0");
}
friend int operator==(const Integer&,const Integer&);
private:
int m_val;
char *m_opis;
}
main.cpp
int operator==(const Integer&a, const Integer&b){
string *str1 = &string ( a.m_opis );
string *str2 = &string ( b.m_opis );
if((str1->compare(*str2))==0 ){return 1 ;} //<- Here is my problem i think.
delete str1;
delete str2;
return 0;
}
}
//Objects and comparing
Integer o1(15,"lala");
Integer o2(150,"lala");
Integer o3;
cout<<o1==o2;