Object-Oriented Programming

For this assignment you are to begin by implementing the class Rectangle. Objects of his class, as implied by its name, are intended to model rectangles, where a rectangle is characterized by a length and width, each of which is a Length class object. (This Length class is the one implemented in the previous assignment.) The Rectangle class should include the following set of functions:

 

Constructors:

Rectangle();

Default constructor initializing an object to a width and length of 0;

Rectangle(Length ln, Length w);

Initialization constructor initializing an object to a length of ln and a width of w.

 

Access Functions:

Length getLength();

Length getWidth();

double getArea();

This function returns the area of a rectangle in square feet expressed as a doouble.

bool EqualAreaTo(Rectangle);

bool GreaterAreaThan(Rectangle);

bool LessAreaThan(Rectangle);

 

Mod

Leave a Reply

Your email address will not be published. Required fields are marked *