Assume the following code:
#include <string>
#include <iostream>
using namespace std;
struct A
{
operator int()
{
return 123;
}
operator string()
{
return string("abc");
}
};
void main()
{
A a;
cout<<(a==123)<<endl;
//cout<<(a==string("abc"))<<endl;
}
First, I compare object a with an int variable. Then, I attempt to compare it with a string variable, but the program files to compile. With the line containing the comparison commented out, it compiles just fine. What is the problem?
==operator overload available for those parameter types? – Cody Gray Jan 25 at 5:34constcorrect, so that you can use them forconst A object;. e.goperator int () const { ... }. – iammilind Jan 25 at 6:10