Say that I need to create 3 linked lists one for int, one for Strings and one for a different type of custom object. If I was using generics it would be easy to do this just by creating one linked list but is there a way to avoid writing the same repetetive code 3 times if I was not using generics?
|
If you use The code would look, roughly, like:
|
|||
|
|
|
Before the introduction of generics in Java 1.5 the Collections all used the type Object, so you would have a linked list of Objects. You then had to make sure yourself that you were adding, retrieving and casting the right types. I don't see any reason why you shouldn't or wouldn't use generics since using Java 1.4 is hardly necessary or recommended anymore. |
|||||||
|
|
You couldn't use the same code for ints vs Strings, but assuming you meant Integers, then you would have to create a LinkedList that stored java.lang.Objects, which by the way, is what generic based LinkedLists do. |
|||
|
|
|
You can abstract out the type that the linked list handles into your own type, say |
|||
|
|
|
You could do it with out generics, but you would have no compile time type safety checking and you will have to add all the type casting manually. But then again you will essentially doing what the compiler does when you use generics. Now it's just error prone and manual. |
|||
|
|
|
Yes, you can do this, and it's not that hard.
You then create a The you create a derived class from
|
|||
|
|