Type& Type::operator=(const Type&);
Type& Type::operator=(const Type& value)
{
if (this != &value)
{
// Clear out old value...
// Assign new value...
}
return *this;
}
This page was last modified on Oct 26, 2000
URL: http://people.hsc.edu/faculty-staff/robbk/Coms262/Lectures/AssignmentOperator.html