OnJava8-Examples/generics/DogsAndRobotMethodReferences.java

46 lines
1.2 KiB
Java
Raw Normal View History

2016-01-25 18:05:55 -08:00
// generics/DogsAndRobotMethodReferences.java
2016-12-30 17:23:13 -08:00
// (c)2017 MindView LLC: see Copyright.txt
2016-01-25 18:05:55 -08:00
// We make no guarantees that this code is fit for any purpose.
2016-09-23 13:23:35 -06:00
// Visit http://OnJava8.com for more book information.
2016-01-25 18:05:55 -08:00
// "Assisted Latent Typing"
import typeinfo.pets.*;
import java.util.function.*;
class PerformingDogA extends Dog {
2016-01-25 18:05:55 -08:00
public void speak() { System.out.println("Woof!"); }
public void sit() { System.out.println("Sitting"); }
public void reproduce() {}
}
class RobotA {
2016-01-25 18:05:55 -08:00
public void speak() { System.out.println("Click!"); }
public void sit() { System.out.println("Clank!"); }
public void oilChange() {}
}
class CommunicateA {
2016-01-25 18:05:55 -08:00
public static <P> void perform(P performer,
Consumer<P> action1, Consumer<P> action2) {
action1.accept(performer);
action2.accept(performer);
}
}
public class DogsAndRobotMethodReferences {
public static void main(String[] args) {
CommunicateA.perform(new PerformingDogA(),
PerformingDogA::speak, PerformingDogA::sit);
CommunicateA.perform(new RobotA(),
RobotA::speak, RobotA::sit);
CommunicateA.perform(new Mime(),
Mime::walkAgainstTheWind,
Mime::pushInvisibleWalls);
2016-01-25 18:05:55 -08:00
}
}
/* Output:
Woof!
Sitting
Click!
Clank!
*/