When this class is created..
public static class TreeNode<E extends Comparable<E>>
what does the <E extends Comparable<E>> mean?
|
When this class is created..
what does the |
||||
|
|
|
That is a generic constraint. It means that whatever type you store in the |
|||
|
|
|
It means that whenever you create an instance of this class like
MyClass must implement Comparable < MyClass >
|
|||||||||||||||||
|