-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathbridge.dart
46 lines (39 loc) · 1.21 KB
/
bridge.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
abstract class Loudspeaker {
void announce(String message);
}
class LoudspeakerWithMuzak implements Loudspeaker {
void announce(String message) => print("<soothing muzak playing> $message");
}
class LoudspeakerWithAlarm implements Loudspeaker {
void announce(String message) => print("<BOO-OP BOO-OP> $message <BOO-OP>");
}
abstract class Factory {
Loudspeaker loudspeaker = LoudspeakerWithMuzak();
void announce(String message) => loudspeaker.announce(message);
}
class CoffeeRoaster extends Factory {
int _temp = 200;
bool get isTooHot => _temp >= 225;
void turnGasValve() {
loudspeaker.announce("Increasing gas!");
_temp += 25;
loudspeaker.announce("Temperature is now at $_temp");
}
}
void main() {
var roaster = CoffeeRoaster();
for (var i = 0; i < 3; i++) {
roaster.turnGasValve();
if (roaster.isTooHot) {
roaster.loudspeaker = LoudspeakerWithAlarm();
}
}
/*
<soothing muzak playing> Increasing gas!
<soothing muzak playing> Temperature is now at 225
<BOO-OP BOO-OP> Increasing gas! <BOO-OP>
<BOO-OP BOO-OP> Temperature is now at 250 <BOO-OP>
<BOO-OP BOO-OP> Increasing gas! <BOO-OP>
<BOO-OP BOO-OP> Temperature is now at 275 <BOO-OP>
*/
}