What are the benefits and disadvantages of using generic methods (in compile time, run time, performance, and memory)?
|
|
Okay, Java generics and C++ templates are so different that I'm not sure it's possible to answer them in a single question. Java GenericsThese are there pretty much for syntactic sugar. They are implemented through a controversial decision called type erasure. All they really do is prevent you from having to cast a whole lot, which makes them safer to use. Performance is identical to making specialized classes, except in cases where you are using what would have been a raw data type (int, float, double, char, bool, short). In these cases, the value types must be boxed to their corresponding reference types (Integer, Float, Double, Char, Bool, Short), which has some overhead. Memory usage is identical, since the JRE is just performing the casting in the background (which is essentially free). Java also has some nice type covariance and contravariance, which makes things look much cleaner than not using them. C++ TemplatesThese actually generate different classes based on the input type. An However, since C++ templates create different classes for every variation of their template parameters, the size of the compiled executable is larger. Beyond that, compilation time increases greatly, since all template code must be included with each compilation unit and much more code must be generated. However, actual runtime memory footprint is typically smaller than the alternative (frees an extra void*) and performance is better, since the compiler can perform more aggressive optimizations with the known type. EDIT (thanks David RodrÃguez): While a generic Java class compiles it's entire self, when using a C++ template, you only compile what you use. So, if you create an If you're curious about the differences between them, check out this comparison of generics in C#, Java and C++. |
|||||||||||
|
|
In Java (not sure about C++) generics are a compile-time feature. They avoid the use of potentially unsafe casts. The types a collection holds, for example, are explicitly made available to the compiler so that it knows what kinds of objects / primitives can be placed in it. This removes unsafe assumptions made by developers about what might be in a collection at some time. It also serves to improve code readability. In Java, I dont believe there are performance or memory gains to be had. |
|||||||
|
|
Let's just forget the benefit in runtime, as such will be a premature optimization. In compile time though, generic method can significantly improve readability and as a bonus, you will find a lot of errors much earlier (in compile time instead in runtime). Of course, the prerequisite of all that is that you have to define the generic as correctly as possible, not too loose and not too tight. |
|||
|
|
|
During coding time, the benefit is that you don't have to cast your objects into the specific type, thus there is some compile time safety. At runtime there is no difference (in Java). |
|||
|
|
|
The main benefit in both languages is type safety: for example the compiler will guarantee for you that your Performance wise Java differs from C++. In C++ a generic class is specialized during the compilation process, so there is no overhead at all. In Java on the other hand, generics were implemented on top of an existing JVM specification so the compiler produces Java byte code that actually uses type casts, which are not free. On the other hand the alternative to generics is treating everything as an Finally, sort of related, when generics were introduced in Java, they also added auto boxing which allows you to use primitive types with generics. Autoboxing means that a primitive type is automatically boxed in its class equivalent, i.e. an |
|||
|
|
I have coded up some generic field and record classes. They do not use templates. A cool attribute is that they have a One nice attribute is that you can process records without knowing the details. (BWT, a record consists of one or more fields). So a record would be read by passing a Reader (a Visitor class for reading fields) to each field and having the field use the given reader to fill its member(s). Similarly with writing. If I need to read from an XML file or a database, I just create a Reader that specializes in reading from XML or a database. This requires no changes to the Record or Field classes. Nice, quick and easy. One drawback is that I can't easily see the record in the debugger. I have to write code to print the record or use an I'm amazed at how much work can be performed without knowing the details of the objects and sticking to the interfaces. |
|||
|
|
|
Contrary to beliefs of the majority of Java developers, you can avoid type erasure, you can have reified types with Generics. This is true that it is a trick, but it can be done if you really need to have something nearer to C++ templates. http://www.jquantlib.org/index.php/Using_TypeTokens_to_retrieve_generic_parameters I hope it helps. |
|||
|
|
|
You asked for drawbacks as well, here's one. Generic programming in C++ can yield some pretty "space-age" code which can be very verbose and difficult to read & comprehend by humans. That is, humans other than the one who designed it. As such, it can be challenging to maintain and to use. Code that is difficult to maintain or use has a big strike against it. One place where I have found this to be particularly true is in the use of policy classes. Here's an example. Some time ago, I wrote a policy-based resource manager. Kind of like a smart pointer, but generic enough to be used for any kind of resource, not just memory. Things like mutexes, GDI (Windows) resources, etc. The motivation behind writing this was two fold. One, I just wanted to write it :) but two, I wanted to create a repository of code that could be generally useful to manage resources of all kinds. In order for it to be generally useful, people would have to want to use it. So let me ask you, would you want to use this?
If your answer is 'no, way too complicated,' that's precisely my point. |
|||
|
|