π Background Information
In this lab we will be calculating the perimeter and area of a variety of shapes. Details of these calculations are shown below.
Circle
- The area of a circle with radius is given by .
- The circumference of a circle with radius is given by .
Rectangle
- The area of a rectangle with sides and is given by .
- The perimeter of a rectangle with sides and is given by .
- A rectangle has four sides.
Right Triangle
- The area of a right triangle with legs and is given by .
- The perimeter of a right triangle with legs and is given by .
- A right triangle has three sides.
Square
A square is a type of rectangle where the sides and are congruent (i.e. identical in size).
Isoceles Right Triangle
A isoceles right triangle is a type of right triangle where the legs and are congruent (i.e. identical in size).
π― Problem Statement
The primary goal of this lab is to explore inheritance and polymorphism by creating relationships between classes represented by the shapes described above. Perform the actions outlined in the Acceptance Criteria below. For your convenience, I have divided them up into separate parts so that you can differentiate between inheritance and polymorphism.
β Acceptance Criteria
Part One - Abstract Base Classes
In the first part of this lab, we are going to create a relationship between an abstract Shape
class and a few derived classes.
- Start off by writing an abstract class called
Shape
with virtual methodsgetArea()
andgetPerimeter()
. - Write three classes that inherit from the
Shape
class:Circle
,Rectangle
, andRightTriangle
. In each of these cases, you will need to override thegetArea()
andgetPerimeter()
methods with their specific implementations. - Unit test each of the inherited classes. You should be able to create a new instance of each class with whatever dimensions are appropriate and then assert that the area and perimeter are correct.
- Commit and push up your code to GitHub.
Part Two - Inheritance Trees
We focused on an abstract base class in the first part of this lab. Now, we will focus on building a larger inheritance tree.
- Update your program with a new concrete class called
Square
. TheSquare
class should inherit its behavior from theRectangle
class. You may or may not need to overwrite the constructor,getArea()
, andgetPerimeter()
withinSquare
. - Update your program with a new concrete class called
IsocelesRightTriangle
. TheIsoscelesRightTriangle
class should inherit its behavior from theRightTriangle
class. You may or may not need to overwrite the constructor,getArea()
, andgetPerimeter()
withinIsocelesRightTriangle
. - Unit test each of the new classes. You should be able to create a new instance of each class with whatever dimensions are appropriate and then assert that the area and perimeter are correct.
- Commit and push up your code to GitHub.
Part Three - Interfaces
In the previous parts of the lab, we focused on inheritance. Now we will focus on polymorphism through interfaces.
- Create a new interface called
Polygon
. This interface should contain one function declaration callednumberOfSides
which returns the number of sides that the shape represented by the class contains. - Update
Rectangle
,Square
,RightTriangle
, andIsoscelesRightTriangle
to implement thePolygon
interface. - Unit test the changes in each of the classes. You should be able to create a new instance of each class with whatever dimensions are appropriate and then assert that the number of sides are correct.
- Commit and push up your code to GitHub.
π Dev Notes
There are a lot of steps to this lab, but donβt panic! Focus on implementing each step to completion and ensure that it works with good unit tests. If you try to rush through the early steps of the lab, you will find that things break downstream.
π₯οΈ Example Output
N/A
π Thought Provoking Questions
- Suppose I added more shape-based classes to the structure like
Kite
orRhombus
. Eventually, we would get to a point where a shape like aSquare
is geometrically also aRectangle
, aRhombus
, and aKite
. Would you be able to model this relationship with our inheritance tree? Why or why not? - Suppose I wanted to change the abstract
Shape
class in the inheritance tree versus change thePolygon
interface. Which would be easier to do? Why?
πΌ Add-Ons For the Portfolio
(Two Credits) Parallelogram
A rectangle is a type of parallelogram, and a parallelogram is a type of polygon. Update your classes and interfaces to include a parallelogram in the structure. Be sure to unit test where appropriate!
π Useful Links
π Works Cited
N/A