Advertisement
NEGI_RUS

Наследование и шаблоны

Feb 4th, 2017
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. public static class AdjustedNode<T extends GraphNode> {
  2. ...
  3. }
  4. public static class GraphNode {
  5.     private Set<AdjustedNode> adjustedNodes;  // adjustedNodes.add(new AdjustedNode<this class>()) ???
  6.    
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement