Item 6-7 重用标准库

下面的函数定义产生了三个临时对象,其实是可以省略掉的:

string FindAddr( list<Employee> emps, string name ) { for( list<Employee>::iterator i = emps.begin(); i != emps.end(); i++ ) { if( *i == name ) { return i->addr; } } return ""; }

 

修改为:

string FindAddr( const list<Employee>& emps, const string& name ) { list<Employee>::const_iterator i( find(emps.begin(), emps.end(), name) ); if( i != emps.end() ) { return i->addr; } return ""; } bool operator == (const Employee& e, const string& n) { return (e.name.compare(n) == 0); }

 

通过使用参数引用和标准库,程序效率有了提升,也提高了重用率。

你可能感兴趣的:(Item 6-7 重用标准库)