我有以下代码:
class Employee {
friend string FindAddr( list<Employee> lst,string name );
public:
Employee(const string& s){ cout << "Employee CTOR" << endl;}
bool operator==( Employee& e) {
return e.name == name;
}
private:
string name;
string addr;
};
string FindAddr( list<Employee> lst, string name ) {
string result = "";
for( list<Employee>::iterator itr = lst.begin(); itr != lst.end(); itr++ ) {
if ( *itr == name ) { // Problematic code
return (*itr).addr;
}
}
return result;
}
据我了解,有问题的行if ( *itr == name )
应遵循以下步骤:
- 认识它是
operator==
在课堂上Employee
。 - 试图弄清楚是否存在从
string name
to的转换,Employee
以便操作员可以工作。 - 隐式调用
Employee(const string& s)
object 上的构造函数string name
。 - 继续
operator==
。
但是,这一行在编译时给我带来了麻烦:
Invalid operands to binary expression ('Employee' and 'string' (aka 'basic_string<char>'))
即使我显式调用构造函数:
if ( *itr == Employee::Employee(name) )
我犯了同样的错误。
这令人困惑。我很难理解隐式构造函数调用何时起作用(以及为什么即使我显式调用构造函数代码也不起作用)。
谢谢!