I just wonder what usage the following code has:
public class Sub extends java.util.ArrayList<String> {...}
There is no any compiling restriction on the generic constraint java.util.ArrayList<String>.
|
|
Let's say you were making an index for a book, but you don't know how many indices you will need. You could make a class /e1
Also, when a one Class extends a generic Class like |
|||||||
|
|
The compiler does place restrictions on other code based on the type parameter in this case. This will compile
but this will not
|
|||||||||||
|
|
You can extend class Remember, Its not a good practise to extend the standard classes Why not use like this ?
|
|||||
|
|
If you do that you can add to the basic functionality of an For example, you can override the |
|||
|
|