From Mechanism to Method: Function Follows Form
By Kelvin Henney, November 01, 2000
Of all the features of C++ that can affect source code readability, operator overloading is one of the most powerful. Operator overloading can render otherwise well-written code obscure; on the other hand, it makes possible many important idioms - smart pointers, function objects, and iterators, to name a few. Kevlin Henney shows us another good application of operator overloading: a remember_function that bundles a target object together with a member function pointer for later callback
November 2000 C++ Experts Forum/From Mechanism to Method/Listing 4
class function_ptr
{
public:
...
function_ptr(const function_ptr &other)
: body(other.body ? other.body->clone() : 0)
{
}
function_ptr &operator=(const function_ptr &rhs)
{
callable *old_body = body;
body = rhs.body ? rhs.body->clone() : 0;
delete old_body;
return *this;
}
...
};