Generics came into java from Java 5 and has changed the way we use Collections. You now find people using and building generic classes more and more. For those who don’t know what generics is, please read the below link:
My gripe with generics is not with generics itself, but the convention of using placeholders as single letters like this:
With collections, since we have been using these classes before generics came in we know that K represents the key and V represents the value. Now imagine you have class such as below:
Now without having a look at the gory innards of SwingWorker would you be able to reliably interpret what T and V actually mean? Once you go through the class you will understand that T actually represents the return type of the doInBackground() method and V represent the type of the class that you can use to show intermediate results on the screen.
This, people can argue can be obtained out of the java docs as well. Well now everyone knows that java docs go quickly out of date in any project and the only source of truth remains your code. People who read the java doc would go through the code anyway to understand how to use the class. And all of this just to understand what T and V represents. When we are all for descriptive method, field and class names why cryptic placeholder values?
The java tutorial on generics state that the convention is because if we use a descriptive placeholder name we might confuse them with class names. I find that a little hard to take in. What if you use the $.. like this:
Now it becomes instantly clear to me how these generic types are used within that class and what I need to pass into the class declaration. No one names their classes starting with a $ sign. In fact in most templating languages, velocity, struts, spring using the dollar sign to signify a placeholder. Why can’t we do the same? I for one am going to start and will seek to turn other people as well to start using descriptive placeholders in generic classes.
Comments
Post a Comment