-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshape_example.dart
64 lines (53 loc) · 1.64 KB
/
shape_example.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/// From Tutorial Point:: https://www.tutorialspoint.com/design_pattern/factory_pattern.htm
//! Step 1
// Create an abstract class.
abstract class IShape {
const IShape();
void draw();
}
//! Step 2
// Create concrete classes implementing the same abstract class.
class Rectangle implements IShape {
@override
void draw() => print("Inside Rectangle::draw() method.");
}
class Square implements IShape {
@override
void draw() => print("Inside Square::draw() method.");
}
class Circle implements IShape {
@override
void draw() => print("Inside Circle::draw() method.");
}
//! Step 3
// Create a Factory to generate object of concrete class based on given information.
enum ShapeType { CIRCLE, RECTANGLE, SQUARE }
class ShapeFactory {
//use getShape method to get object of type shape
static IShape getShape(ShapeType shapeType) {
switch (shapeType) {
case ShapeType.CIRCLE:
return Circle();
case ShapeType.RECTANGLE:
return Rectangle();
case ShapeType.SQUARE:
return Square();
default:
throw Exception("Not Exist Shape");
}
}
}
// Step 4
// Use the Factory to get object of concrete class by passing an information such as type.
void main() {
//get an object of Circle and call its draw method.
IShape shape1 = ShapeFactory.getShape(ShapeType.CIRCLE);
//call draw method of Circle
shape1.draw();
//get an object of Rectangle and call its draw method. then draw it
IShape shape2 = ShapeFactory.getShape(ShapeType.RECTANGLE);
shape2.draw();
//get an object of Square and call its draw method.
IShape shape3 = ShapeFactory.getShape(ShapeType.SQUARE);
shape3.draw();
}