I would like to understand the following type of syntax.
Example:
public interface A < T extends A < T> > {
}
What is the logic of this interface ?
Thanks in advance.
|
|
This would be used as follows:
In other words, you are forced to make the parameter of This construction gives the interface access to Note that this construction is formally somewhat similar to the curiously recurring template pattern in C++ (although it is technically quite different). In both languages it allows the "base class" to reason about its ultimate derived usage. |
||||
|
|