I can't figure out the use for this code. Of what use is this pattern?
[code repeated here for posterity]
public class Turtle<T> where T : Turtle<T>
{
}
|
2
|
I can't figure out the use for this code. Of what use is this pattern? [code repeated here for posterity]
|
||||||||||
|
|
|
This pattern essentially allows you to refer to a concrete subclass within the parent class. For example:
Versus:
In the former, it's specified that a |
||||||
|
|
|
There is no use that I can see. Basically, it's the same as
|
||||||||||||||
|