You have a new task
It's your first day at work. You are very excited to be involved in a real-world project.
Your team lead tried to explain to you the purpose of the project you are involved in.
"Here at Hugis Inc., we strive to be the best drawer of shapes."After an hour, he gave you your first task.
You have to implement this method:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void DrawShapes(IList<Shape> shapes) | |
{ | |
// TODO: draw our best shapes here, buddy! | |
} |
The codebase of the project you are involved in already have these classes:
- a base Shape class,
- classes for Circle, Square, and Triangle that derives from the Shape class.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public abstract class Shape | |
{ | |
abstract public double ComputeArea(); | |
} | |
public class Circle : Shape | |
{ | |
private double radius; | |
public Circle(double radius) | |
{ | |
this.radius = radius; | |
} | |
public double Radius | |
{ | |
get { return this.radius;} | |
set { this.radius = value;} | |
} | |
override public double ComputeArea() | |
{ | |
return Math.PI * Math.Pow(radius, 2); | |
} | |
} | |
public class Square : Shape | |
{ | |
... | |
} |
The Evil code
This task is so easy!!! (you say to yourself)You then started typing on the keyboard. Click! Click! Click!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void DrawShapes(IList<Shape> shapes) | |
{ | |
foreach (Shape shape in shapes) | |
{ | |
if (shape is Circle) | |
{ | |
DrawCircle((Circle) shape); | |
} | |
else if (shape is Square) | |
{ | |
DrawSquare((Square) shape); | |
} | |
... | |
else { | |
Console.WriteLine("What shape that is, I do not know."); | |
} | |
} | |
} | |
private static void DrawCircle(Circle circle) | |
{ | |
Console.WriteLine(String.Format("I am a circle with radius {0} and area {1}", circle.Radius, circle.ComputeArea())); | |
} | |
private static void DrawSquare(Square square) | |
{ | |
Console.WriteLine(String.Format("I am a square with length {0} and area {1}", square.Length, square.ComputeArea())); | |
} |
Then after a few hours of hard work, you pushed your code to the repository, waiting for your team lead's comments.
The Good Code
Your team lead's comment came in.
"Good job!"Wow!
"But there is a better way of doing this.You then went to his table and watched him refactor your code.
"We want to put the function drawCircle() inside the Circle class, and the function drawSquare() inside the Square class, because we want to have an easy access them anywhere in the system.
"Come over here. I'm going to show you how I will do the changes."
"Because we want to be able to draw each Shape that we have, we will create an abstract method named draw() in our base Shape class.No.
abstract public void Draw();
"Do you know what an abstract method is?"
"An abstract method is a method definition that has no implementation -- like the getArea() method in the Shape class.Ahh! The Shape class did not provide an implementation for getArea() because different shapes has different formulas for getting the area! Great!
"Notice that getArea() does not have an implementation inside the Shape class. But any class that inherits from the Shape class is required to provide an implementation for getArea()"
Now I understand what you want me to do with drawing shapes.
Let me be the one to refactor my code, please. I think I already know what to do.
"Ok! Go Ahead!"You went back to your machine and started refactoring your code.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void drawShapes(IList<Shape> shapes) | |
{ | |
foreach (Shape shape in shapes) | |
{ | |
shape.Draw(); | |
} | |
} |
MTGOTB, TCOTU, BGWML
No comments:
Post a Comment