2015-09-07 11:44:36 -06:00
|
|
|
|
// polymorphism/Transmogrify.java
|
2015-11-14 16:18:05 -08:00
|
|
|
|
// <20>2016 MindView LLC: see Copyright.txt
|
2015-06-15 17:47:35 -07:00
|
|
|
|
// Dynamically changing the behavior of an object
|
|
|
|
|
// via composition (the "State" design pattern).
|
|
|
|
|
|
|
|
|
|
class Actor {
|
|
|
|
|
public void act() {}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class HappyActor extends Actor {
|
|
|
|
|
@Override
|
2015-11-03 12:00:44 -08:00
|
|
|
|
public void act() { System.out.println("HappyActor"); }
|
2015-06-15 17:47:35 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class SadActor extends Actor {
|
|
|
|
|
@Override
|
2015-11-03 12:00:44 -08:00
|
|
|
|
public void act() { System.out.println("SadActor"); }
|
2015-06-15 17:47:35 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class Stage {
|
|
|
|
|
private Actor actor = new HappyActor();
|
|
|
|
|
public void change() { actor = new SadActor(); }
|
|
|
|
|
public void performPlay() { actor.act(); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class Transmogrify {
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
Stage stage = new Stage();
|
|
|
|
|
stage.performPlay();
|
|
|
|
|
stage.change();
|
|
|
|
|
stage.performPlay();
|
|
|
|
|
}
|
2015-09-07 11:44:36 -06:00
|
|
|
|
}
|
|
|
|
|
/* Output:
|
2015-06-15 17:47:35 -07:00
|
|
|
|
HappyActor
|
|
|
|
|
SadActor
|
2015-09-07 11:44:36 -06:00
|
|
|
|
*/
|