I thought I'd offer this softball to whomever would like to hit it out of the park. What are generics, what are the advantages of generics, why, where, how should I use them? Please, keep it fairly basic. Thanks.
|
4
|
|||||||||||
|
|
|
|
||
|
|
|
Generics in Java facilitate parametric polymorphism. By means of type parameters, you can pass arguments to types. Just as a method like Here are a couple of examples of generic types I use every day. First, a very useful generic interface:
This interface says that for any two types,
Before generics, polymorphism was achieved by subclassing using the
This is much more flexible than using inheritance, because we can stay with the theme of using composition and parametric polymorphism without locking down brittle hierarchies. Java's generics are not perfect though. You can abstract over types, but you can't abstract over type constructors, for example. That is, you can say "for any type T", but you can't say "for any type T that takes a type parameter A". I wrote an article about these limits of Java generics, here. One huge win with generics is that they let you avoid subclassing. Subclassing tends to result in brittle class hierarchies that are awkward to extend, and classes that are difficult to understand individually without looking at the entire hierarchy. Wereas before generics you might have classes like |
|||
|
|
|
Haven't you ever written a method (or a class) where the key concept of the method/class wasn't tightly bound to the data type of the parameters/instance variables (think linked list, max/min functions, binary search, etc.). Haven't you ever wish you could reuse the algorthm/code without resorting to cut-n-paste reuse or compromising strong-typing (e.g. I want a list of strings, not a list of things I hope are strings!)? That's why you should want to use generics (or something better). |
||
|
|
|
Not needing to typecast is one of the biggest advantages of Java generics, as it will perform type checking at compile-time. This will reduce the possibility of But I suspect that you're fully aware of that.
At first, I didn't see the benefit of generics either. I started learning Java from the 1.4 syntax (even though Java 5 was out at the time) and when I encountered generics, I felt that it was more code to write, and I really didn't understand the benefits. Modern IDEs make writing code with generics easier. Most modern, decent IDEs are smart enough to assist with writing code with generics, especially with code completion. Here's an example of making an
And indeed, that's a lot to type just to make a new
True, I did need to select In addition, since the types are known, when retrieving elements from the generic collection, the IDE will act as if that object is already an object of its declared type -- there is no need to casting for the IDE to know what the object's type is. A key advantage of generics comes from the way it plays well with new Java 5 features. Here's an example of tossing integers in to a
In that piece of code, there are three new Java 5 features present: First, generics and autoboxing of primitives allow the following lines:
The integer Next, for for-each loop takes all three of those:
First, the Generics can be the glue that brings together the new features introduced in Java 5, and it just makes coding simpler and safer. And most of the time IDEs are smart enough to help you with good suggestions, so generally, it won't a whole lot more typing. And frankly, as can be seen from the Edit - An example without generics The following is an illustration of the above
(Note: The above code will generate unchecked conversion warning at compile-time.) When using non-generics collections, the types that are entered into the collection is objects of type
In the above lines, autoboxing is in play -- the primitive
This is the part that is crucial. The reason the for-each loop works is because the However, since there is no type information, the Now that the
Here, a typecast is performed from an The I hope I could illustrate that the new features of Java 5 is possible to use with non-generic code, but it just isn't as clean and straight-forward as writing code with generics. And, in my opinion, to take full advantage of the new features in Java 5, one should be looking into generics, if at the very least, allows for compile-time checks to prevent invalid typecasts to throw exceptions at runtime. |
||||||
|
|
|
Don't forget that generics aren't just used by classes, they can also be used by methods. For example, take the following snippet:
It is simple, but can be used very elegantly. The nice thing is that the method returns whatever it was that it was given. This helps out when you are handling exceptions that need to be re-thrown back to the caller:
The point is that you don't lose the type by passing it through a method. You can throw the correct type of exception instead of just a This is just a simple example of one use for generic methods. There are quite a few other neat things you can do with generic methods. The coolest, in my opinion, is type inferring with generics. Take the following example (taken from Josh Bloch's Effective Java 2nd Edition):
This doesn't do a lot, but it does cut down on some clutter when the generic types are long (or nested; i.e. |
||||||
|
|
|
Generics also give you the ability to create more reusable objects/methods while still providing type specific support. You also gain a lot of performance in some cases. I don't know the full spec on the Java Generics, but in .NET I can specify constraints on the Type parameter, like Implements a Interface, Constructor , and Derivation. |
||
|
|
|
|
I really hate to repeat myself. I hate typing the same thing more often than I have to. I don't like restating things multiple times with slight differences. Instead of creating:
I can build one reusable class... (in the case where you don't want to use the raw collection for some reason)
I'm now 3x more efficient and I only have to maintain one copy. Why WOULDN'T you want to maintain less code? This is also true for non-collection classes such as a I don't. |
||||||||||
|
|
|
From the Sun Java documentation, in response to "why should i use generics?": "Generics provides a way for you to communicate the type of a collection to the compiler, so that it can be checked. Once the compiler knows the element type of the collection, the compiler can check that you have used the collection consistently and can insert the correct casts on values being taken out of the collection... The code using generics is clearer and safer.... the compiler can verify at compile time that the type constraints are not violated at run time [emphasis mine]. Because the program compiles without warnings, we can state with certainty that it will not throw a ClassCastException at run time. The net effect of using generics, especially in large programs, is improved readability and robustness. [emphasis mine]" |
||||||||
|
|
|
To give a good example. Imagine you have a class called Foo
Example 1 Now you want to have a collection of Foo objects. You have two options, LIst or ArrayList, both of which work in a similar manner.
In the above code, if I try to add a class of FireTruck instead of Foo, the ArrayList will add it, but the Generic List of Foo will cause an exception to be thrown. Example two. Now you have your two array lists and you want to call the Bar() function on each. Since hte ArrayList is filled with Objects, you have to cast them before you can call bar. But since the Generic List of Foo can only contain Foos, you can call Bar() directly on those.
|
||
|
|
|
If you were to search the Java bug database just before 1.5 was released, you'd find seven times more bugs with For me the huge advantage of generics is that they document in code important type information. If I didn't want that type information documented in code, then I'd use a dynamically typed language, or at least a language with more implicit type inference. Keeping an object's collections to itself isn't a bad style (but then the common style is to effectively ignore encapsulation). It rather depends upon what you are doing. Passing collections to "algorithms" is slightly easier to check (at or before compile-time) with generics. |
||||||||||||||
|
|
|
Using generics for collections is just simple and clean. Even if you punt on it everywhere else, the gain from the collections is a win to me.
vs
or
That alone is worth the marginal "cost" of generics, and you don't have to be a generic Guru to use this and get value. |
||||||||||||
|
|
|
I use them for example in a GenericDao implemented with SpringORM and Hibernate which look like this
By using generics my implementations of this DAOs force the developer to pass them just the entities they are designed for by just subclassing the GenericDao
My little framework is more robust (have things like filtering, lazy-loading, searching). I just simplified here to give you an example I, like Steve and you, said at the beginning "Too messy and complicated" but now I see its advantages |
||
|
|
|
|
Where you're essentially checking for a condition that should only exist because the interface is expressed in terms of objects. My initial reaction to generics was similar to yours - "too messy, too complicated". My experience is that after using them for a bit you get used to them, and code without them feels less clearly specified, and just less comfortable. Aside from that, the rest of the java world uses them so you're going to have to get with the program eventually, right? |
||||||||
|
|
|
The best benefit to Generics is code reuse. Lets say that you have a lot of business objects, and you are going to write VERY similar code for each entity to perform the same actions. (I.E Linq to SQL operations). With generics, you can create a class that will be able to operate given any of the types that inherit from a given base class or implement a given interface like so:
Notice the reuse of the same service given the different Types in the DoSomething method above. Truly elegant! There's many other great reasons to use generics for your work, this is my favorite. |
|||
|
|
|
|
I once gave a talk on this topic. You can find my slides, code, and audio recording at http://www.adventuresinsoftware.com/generics/. |
||
|
|
|
|
I know this is a C# question, but generics are used in other languages too, and their use/goals are quite similar. Java collections use generics since Java 1.5. So, a good place to use them is when you are creating your own collection-like object. An example I see almost everywhere is a Pair class, which holds two objects, but needs to deal with those objects in a generic way.
Whenever you use this Pair class you can specify which kind of objects you want it to deal with and any type cast problems will show up at compile time, rather than runtime. Generics can also have their bounds defined with the keywords 'super' and 'extends'. For example, if you want to deal with a generic type but you want to make sure it extends a class called Foo (which has a setTitle method):
While not very interesting on its own, it's useful to know that whenever you deal with a FooManager, you know that it will handle MyClass types, and that MyClass extends Foo. |
||
|
|
|
|
A couple of things to add/expand on (speaking from the .NET point of view): Generic types allow you to create role-based classes and interfaces. This has been said already in more basic terms, but I find you start to design your code with classes which are implemented in a type-agnostic way - which results in highly reusable code. Generic arguments on methods can do the same thing, but they also help apply the "Tell Don't Ask" principle to casting, i.e. "give me what I want, and if you can't, you tell me why". |
||
|
|
|
|
Not meaning to answer my own question, but I just found and read this (as did anyone who looks at their start page in VS): http://blogs.msdn.com/kirillosenkov/archive/2008/08/19/how-i-started-to-really-understand-generics.aspx. Pretty good stuff. |
|||
|
|
|
|
In summary, generics allow you to specify more precisily what you intend to do (stronger typing). This has several benefits for you:
|
||
|
|
|
|
Single most reason is they provide Type safety
as opposed to,
as a simple example. |
||
|
|
Another advantage of using Generics (especially with Collections/Lists) is you get Compile Time Type Checking. This is really useful when using a Generic List instead of a List of Objects. |
||
|
|
|
|
the jvm casts anyway... it implicitly creates code which treats the generic type as "Object" and creates casts to the desired instantiation. Java generics are just syntactic sugar. |
||
|
|
|
The primary advantage, as Mitchel points out, is strong-typing without needing to define multiple classes. This way you can do stuff like:
Without generics, you would have to cast blah[0] to the correct type to access its functions. |
||
|
|
I just like them because they give you a quick way to define a custom type (as I use them anyway). So for example instead of defining a structure consisting of a string and an integer, and then having to implement a whole set of objects and methods on how to access an array of those structures and so forth, you can just make a Dictionary
And the compiler/IDE does the rest of the heavy lifting. A Dictionary in particular lets you use the first type as a key (no repeated values). |
||
|
|
|
|
If your collection contains value types, they don't need to box/unbox to objects when inserted into the collection so your performance increases dramatically. Cool add-ons like resharper can generate more code for you, like foreach loops. |
||
|
|
|
|
Generics let you use strong typing for objects and data structures that should be able to hold any object. It also eliminates tedious and expensive typecasts when retrieving objects from generic structures (boxing/unboxing). One example that uses both is a linked list. What good would a linked list class be if it could only use object Foo? To implement a linked list that can handle any kind of object, the linked list and the nodes in a hypothetical node inner class must be generic if you want the list to contain only one type of object. |
||
|
|
|
|
Generics avoid the performance hit of boxing and unboxing. Basically, look at ArrayList vs List<T>. Both do the same core things, but List<T> will be a lot faster because you don't have to box to/from object. |
||||||||||
|
|
|
Generics allow you to create objects that are strongly typed, yet you don't have to define the specific type. I think the best useful example is the List and similar classes. Using the generic list you can have a List List List whatever you want and you can always reference the strong typing, you don't have to convert or anything like you would with a Array or standard List. |
||
|
|
