Computer Science A - Class Recatangle - 2/29/00 { public: const rectangle& operator = (const rectangle& ); const rectangle& operator += (const rectangle& ); double getLength(); double getWidth(); }; //free function rectangle operator + (const rectangle& , const rectangle& ); --------------------------------------------------------------------- first length initially = 0.00 first width initially = 0.00 first length after asignment = 2.00 first width after assignment = 3.00 first length after += = 4.00 first width after += = 6.00 first length after addition = 6.00 first width after addition = 9.00