I tried creating a class with one operator bool and one operator void*, but the compiler says they are ambigous. Is there some way I can explain to the compiler what operator to use or can I not have them both?
class A {
public:
operator void*(){
cout << "operator void* is called" << endl;
return 0;
}
operator bool(){
cout << "operator bool is called" << endl;
return true;
}
};
int main()
{
A a1, a2;
if (a1 == a2){
cout << "hello";
}
}
operator void*functions as a slightly saferoperator boolbecause there are fewer bad things you can accidentally do with avoid*. Also google for safe bool idiom which minimizes abuse even further (by defining aoperator pointer-to-memberif I'm not mistaken). – UncleBens Nov 28 '10 at 13:50ifstream. I was wondering why the operator void* was called prior to operator bool, but when I did this it was ambigous. – Default Nov 28 '10 at 15:16