-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoffee_example.dart
58 lines (50 loc) · 1.53 KB
/
coffee_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
class Volume {
final int quantity;
final String unit;
Volume(this.quantity, this.unit);
String toString() => "$quantity $unit";
}
abstract class Vessel {
Volume volume;
String liquid;
Vessel(this.liquid, this.volume);
}
class Bucket extends Vessel {
Bucket(int quantity, String unit) : super('', Volume(quantity, unit));
String toString() => "a $volume bucket full of $liquid";
}
class Cup extends Vessel {
Cup(int quantity, String unit) : super('', Volume(quantity, unit));
String toString() => "a $volume cup full of $liquid";
}
enum Tiredness { rested, sleepy, barelyAlive, hasChildren }
class CoffeeVesselFactory {
static Vessel vesselFor(Tiredness howTired) {
Vessel vessel;
switch (howTired) {
case Tiredness.rested:
vessel = Cup(100, "milliliter");
break;
case Tiredness.sleepy:
case Tiredness.barelyAlive:
vessel = Cup(500, "milliliter");
break;
case Tiredness.hasChildren:
vessel = Bucket(5, "liter");
break;
default:
vessel = Cup(200, "milliliter");
break;
}
vessel.liquid = "coffee";
return vessel;
}
}
void main() {
var sleepyVessel = CoffeeVesselFactory.vesselFor(Tiredness.sleepy);
var kidVessel = CoffeeVesselFactory.vesselFor(Tiredness.hasChildren);
// A sleepy person would like a 500 milliliter cup full of coffee.
print("A sleepy person would like $sleepyVessel.");
// A person with children NEEDS a 5 liter bucket full of coffee.
print("A person with children NEEDS $kidVessel.");
}