OnJava8-Examples/generics/Manipulation.java
2015-09-07 11:44:36 -06:00

21 lines
498 B
Java

// generics/Manipulation.java
// ©2015 MindView LLC: see Copyright.txt
// {CompileTimeError} (Will not compile)
class Manipulator<T> {
private T obj;
public Manipulator(T x) { obj = x; }
// Error: cannot find symbol: method f():
public void manipulate() { obj.f(); }
}
public class Manipulation {
public static void main(String[] args) {
HasF hf = new HasF();
Manipulator<HasF> manipulator =
new Manipulator<>(hf);
manipulator.manipulate();
}
}
/* Output: (None) */