What are the differences between Generics in C# and Java... and Templates in C++? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T02:14:21Z http://stackoverflow.com/feeds/question/31693 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/31693/what-are-the-differences-between-generics-in-c-and-java-and-templates-in-c 26 What are the differences between Generics in C# and Java... and Templates in C++? pek 2008-08-28T05:08:06Z 2009-07-10T13:49:57Z <p>I mostly use Java and generics are relatively new. I keep reading that Java made the wrong decision or that .NET has better implementations etc. etc.</p> <p>So, what are the main differences between C++, C#, Java in generics? Pros/cons of each?</p> http://stackoverflow.com/questions/31693/what-are-the-differences-between-generics-in-c-and-java-and-templates-in-c/31696#31696 0 Answer by travis for What are the differences between Generics in C# and Java... and Templates in C++? travis 2008-08-28T05:14:19Z 2008-08-28T05:14:19Z <p>Wikipedia has great write-ups comparing both <a href="http://en.wikipedia.org/wiki/Comparison_of_C_Sharp_and_Java#Generics" rel="nofollow">Java/C# generics</a> and <a href="http://en.wikipedia.org/wiki/Comparison_of_Java_and_C%2B%2B#Templates_vs._Generics" rel="nofollow">Java generics/C++</a> templates. The <a href="http://en.wikipedia.org/wiki/Generic_programming" rel="nofollow">main article on Generics</a> seems a bit cluttered but it does have some good info in it.</p> http://stackoverflow.com/questions/31693/what-are-the-differences-between-generics-in-c-and-java-and-templates-in-c/31697#31697 16 Answer by John for What are the differences between Generics in C# and Java... and Templates in C++? John 2008-08-28T05:14:53Z 2008-08-28T05:14:53Z <p>Anders Hejlsberg himself described the differences here "<a href="http://www.artima.com/intv/generics2.html" rel="nofollow">Generics in C#, Java, and C++</a>".</p> http://stackoverflow.com/questions/31693/what-are-the-differences-between-generics-in-c-and-java-and-templates-in-c/31698#31698 1 Answer by Matt Cummings for What are the differences between Generics in C# and Java... and Templates in C++? Matt Cummings 2008-08-28T05:15:45Z 2008-08-28T05:15:45Z <p>The biggest complaint is type erasure. In that, generics are not enforced at runtime. <a href="http://java.sun.com/j2se/1.5.0/docs/guide/language/generics.html" rel="nofollow">Here's a link to some Sun docs on the subject</a>.</p> <blockquote> <p>Generics are implemented by type erasure: generic type information is present only at compile time, after which it is erased by the compiler.</p> </blockquote> http://stackoverflow.com/questions/31693/what-are-the-differences-between-generics-in-c-and-java-and-templates-in-c/31721#31721 0 Answer by On Freund for What are the differences between Generics in C# and Java... and Templates in C++? On Freund 2008-08-28T06:32:49Z 2008-08-28T06:32:49Z <p>C++ templates are actually much more powerful than their C# and Java counterparts as they are evaluated at compile time and support specialization. This allows for Template Meta-Programming and makes the C++ compiler equivalent to a Turing machine (i.e. during the compilation process you can compute anything that is computable with a Turing machine).</p> http://stackoverflow.com/questions/31693/what-are-the-differences-between-generics-in-c-and-java-and-templates-in-c/31758#31758 13 Answer by Konrad Rudolph for What are the differences between Generics in C# and Java... and Templates in C++? Konrad Rudolph 2008-08-28T07:11:00Z 2008-08-28T07:11:00Z <p>C++ rarely uses the “generics” terminology. Instead, the word “templates” is used and is more accurate. Templates describes one <em>technique</em> to achieve a generic design.</p> <p>C++ templates is very different from what both C# and Java implement for two main reasons. The first reason is that C++ templates don't only allow compile-time type arguments but also compile-time const-value arguments: templates can be given as integers or even function signatures. This means that you can do some quite funky stuff at compile time, e.g. calculations:</p> <pre><code>template &lt;unsigned int N&gt; struct product { static unsigned int const VALUE = N * product&lt;N - 1&gt;::VALUE; }; template &lt;&gt; struct product&lt;1&gt; { static unsigned int const VALUE = 1; }; // Usage: unsigned int const p5 = product&lt;5&gt;::VALUE; </code></pre> <p>This code also uses the other distinguished feature of C++ templates, namely template specialization. The code defines one class template, <code>product</code> that has one value argument. It also defines a specialization for that template that is used whenever the argument evaluates to 1. This allows me to define a recursion over template definitions. I believe that this was first discovered by <a href="http://erdani.org/" rel="nofollow">Andrej Alexandrescu</a>.</p> <p>Template specialization is important for C++ because it allows for structural differences in data structures. Templates as a whole is a means of unifying an interface across types. However, although this is desirable, all types cannot be treated equally inside the implementation. C++ templates takes this into account. This is very much the same difference that OOP makes between interface and implementation with the overriding of virtual methods.</p> <p>C++ templates are essential for its algorithmic programming paradigm. For example, almost all algorithms for containers are defined as functions that accept the container type as a template type and treat them uniformly. Actually, that's not quite right: C++ doesn't work on containers but rather on <em>ranges</em> that are defined by two iterators, pointing to the beginning and behind the end of the container. Thus, the whole content is circumscribed by the iterators: begin &lt;= elements &lt; end.</p> <p>Using iterators instead of containers is useful because it allows to operate on parts of a container instead of on the whole.</p> <p>Another distinguishing feature of C++ is the possibility of <em>partial specialization</em> for class templates. This is somewhat related to pattern matching on arguments in Haskell and other functional languages. For example, let's consider a class that stores elements:</p> <pre><code>template &lt;typename T&gt; class Store { … }; // (1) </code></pre> <p>This works for any element type. But let's say that we can store pointers more effciently than other types by applying some special trick. We can do this by <em>partially</em> specializing for all pointer types:</p> <pre><code>template &lt;typename T&gt; class Store&lt;T*&gt; { … }; // (2) </code></pre> <p>Now, whenever we instance a container template for one type, the appropriate definition is used:</p> <pre><code>Store&lt;int&gt; x; // Uses (1) Store&lt;int*&gt; y; // Uses (2) Store&lt;string**&gt; z; // Uses (2), with T = string*. </code></pre> http://stackoverflow.com/questions/31693/what-are-the-differences-between-generics-in-c-and-java-and-templates-in-c/31778#31778 0 Answer by izb for What are the differences between Generics in C# and Java... and Templates in C++? izb 2008-08-28T07:22:31Z 2008-08-28T07:22:31Z <p>In Java, generics are compiler level only, so you get:</p> <pre><code>a = new ArrayList&lt;String&gt;() a.getClass() =&gt; ArrayList </code></pre> <p>Note that the type of 'a' is an array list, not a list of strings. So the type of a list of bananas would equal() a list of monkeys.</p> <p>So to speak.</p> http://stackoverflow.com/questions/31693/what-are-the-differences-between-generics-in-c-and-java-and-templates-in-c/31821#31821 9 Answer by Konrad Rudolph for What are the differences between Generics in C# and Java... and Templates in C++? Konrad Rudolph 2008-08-28T07:57:39Z 2008-09-01T09:21:04Z <p>Follow-up to my previous posting.</p> <p>Templates are one of the main reasons why C++ fails so abysmally at intellisense, regardless of the IDE used. Because of template specialization, the IDE can never be really sure if a given member exists or not. Consider:</p> <pre><code>template &lt;typename T&gt; struct X { void foo() { } }; template &lt;&gt; struct X&lt;int&gt; { }; typedef int my_int_type; X&lt;my_int_type&gt; a; a.| </code></pre> <p>Now, the cursor is at the indicated position and it's damn hard for the IDE to say at that point if, and what, members <code>a</code> has. For other languages the parsing would be straightforward but for C++, quite a bit of evaluation is needed beforehand.</p> <p>It gets worse. What if <code>my_int_type</code> were defined inside a class template as well? Now its type would depend on another type argument. And here, even compilers fail.</p> <pre><code>template &lt;typename T&gt; struct Y { typedef T my_type; }; X&lt;Y&lt;int&gt;::my_type&gt; b; </code></pre> <p>After a bit of thinking, a programmer would conclude that this code is the same as the above: <code>Y&lt;int&gt;::my_type</code> resolves to <code>int</code>, therefore <code>b</code> should be the same type as <code>a</code>, right?</p> <p>Wrong. At the point where the compiler tries to resolve this statement, it doesn't actually know <code>Y&lt;int&gt;::my_type</code> yet! Therefore, it doesn't know that this is a type. It could be something else, e.g. a member function or a field. This might give rise to ambiguities (though not in the present case), therefore the compiler fails. We have to tell it explicitly that we refer to a type name:</p> <pre><code>X&lt;typename Y&lt;int&gt;::my_type&gt; b; </code></pre> <p>Now, the code compiles. To see how ambiguities arise from this situation, consider the following code:</p> <pre><code>Y&lt;int&gt;::my_type(123); </code></pre> <p>This code statement is perfectly valid and tells C++ to execute the function call to <code>Y&lt;int&gt;::my_type</code>. However, if <code>my_type</code> is not a function but rather a type, this statement would still be valid and perform a special cast (the function-style cast) which is often a constructor invocation. The compiler can't tell which we mean so we have to disambiguate here.</p> http://stackoverflow.com/questions/31693/what-are-the-differences-between-generics-in-c-and-java-and-templates-in-c/31866#31866 1 Answer by serg10 for What are the differences between Generics in C# and Java... and Templates in C++? serg10 2008-08-28T08:52:04Z 2008-10-30T00:50:23Z <p>Both Java and C# introduced generics after their first language release. However, there are differences in how the core libraries changed when generics was introduced. <strong>C#'s generics are not just compiler magic</strong> and so it was not possible to <em>generify</em> existing library classes without breaking backwards compatibility.</p> <p>For example, in Java the existing <a href="http://java.sun.com/javase/6/docs/technotes/guides/collections/index.html" rel="nofollow">Collections Framework</a> was <em>completely genericised</em>. <strong>Java does not have both a generic and legacy non-generic version of the collections classes.</strong> In some ways this is much cleaner - if you need to use a collection in C# there is really very little reason to go with the non-generic version, but those legacy classes remain in place, cluttering up the landscape. </p> <p><strong>Another notable difference is the Enum classes in Java and C#.</strong> Java's Enum has this somewhat tortuous looking definition:</p> <pre><code>// java.lang.Enum Definition in Java public abstract class Enum&lt;E extends Enum&lt;E&gt;&gt; implements Comparable&lt;E&gt;, Serializable { </code></pre> <p>(see Angelika Langer's very clear <a href="http://www.angelikalanger.com/GenericsFAQ/FAQSections/TypeParameters.html#How%20do%20I%20decrypt%20Enum?" rel="nofollow">explanation of exactly why</a> this is so. Essentially, this means Java can give type safe access from a string to its Enum value:</p> <pre><code>// Parsing String to Enum in Java Colour colour = Colour.valueOf("RED"); </code></pre> <p>Compare this to C#'s version:</p> <pre><code>// Parsing String to Enum in C# Colour colour = (Colour)Enum.Parse(typeof(Colour), "RED"); </code></pre> <p>As Enum already existed in C# before generics was introduced to the language, the definition could not change without breaking existing code. So, like collections, it remains in the core libraries in this legacy state.</p> http://stackoverflow.com/questions/31693/what-are-the-differences-between-generics-in-c-and-java-and-templates-in-c/31929#31929 79 Answer by Orion Edwards for What are the differences between Generics in C# and Java... and Templates in C++? Orion Edwards 2008-08-28T09:50:26Z 2009-03-01T13:46:48Z <p>I'll add my voice to the noise and take a stab at making things clear:</p> <h2>C# Generics allow you to declare something like this.</h2> <pre><code>List&lt;Person&gt; foo = new List&lt;Person&gt;(); </code></pre> <p>and then the compiler will prevent you from putting things that aren't <code>Person</code> into the list.<br /> Behind the scenes it actually goes and builds a new set of code, as if you had declared a special list class just for containing people - something like <code>ListOfPerson</code> - this special new set of code is what ends up in your <code>.dll</code> file.</p> <p>The benefit of this is that it makes it really fast. There's no casting or any other stuff, and because the special <code>ListOfPerson</code> pseudo-class is actually in the dll, other code that looks at it later on using reflection can tell that it contains <code>Person</code> objects and so on.</p> <p>The downside of this is that old C# 1.0 and 1.1 code (before they added generics) doesn't understand these new pseudo-classes, so you have to manually convert things back to plain old <code>List</code> to interoperate with them. This is not that big of a problem, because C# 2.0 binary code is not backwards compatible. The only time this will ever happen is if you're upgrading some old C# 1.0/1.1 code to C# 2.0</p> <h2>Java Generics allow you to declare something like this.</h2> <pre><code>ArrayList&lt;Person&gt; foo = new ArrayList&lt;Person&gt;(); </code></pre> <p>On the surface it looks the same, and it sort-of is. The compiler will also prevent you from putting things that aren't <code>Person</code> into the list.</p> <p>The difference is what happens behind the scenes. Unlike C#, Java does not go and build a special <code>ListOfPerson</code> - it just uses the plain old <code>ArrayList</code> which has always been in Java. When you get things out of the array, the usual <code>Person p = (Person)foo.get(1);</code> casting-dance still has to be done, just the compiler saves you having to type it. The speed hit is still incurred just like always.<br /> When people mention "Type Erasure" this is what they're talking about. The compiler inserts the casts for you, and then 'erases' the fact that it's meant to be a list of <code>Person</code> not just <code>Object</code></p> <p>The benefit of this approach is that old code which doesn't understand generics doesn't have to care. It's still dealing with the same old <code>ArrayList</code> as it always has. This is more important in the java world because they wanted to support compiling code using Java 5 with generics, and having it run on old 1.4 or previous JVM's, which microsoft deliberately decided not to bother with.</p> <p>The downside is the speed hit I mentioned previously, and also because there is no <code>ListOfPerson</code> pseudo-class or anything like that going into the .class files, code that looks at it later on (with reflection, or if you pull it out of another collection where it's been converted into <code>Object</code> or so on) can't tell in any way that it's meant to be a list containing only <code>Person</code> and not just any other array list.</p> <h2>C++ Templates allow you to declare something like this</h2> <pre><code>std::list&lt;Person&gt;* foo = new std::list&lt;Person&gt;(); </code></pre> <p>It looks like C# and Java generics, and it will do what you think it should do, but behind the scenes different things are happening.</p> <p>It has the most in common with C# generics in that it builds special <code>pseudo-classes</code> rather than just throwing the type information away like java does, but it's a whole different kettle of fish.</p> <p>Both C# and Java produce output which is designed for virtual machines. If you write some code which has a <code>Person</code> class in it, in both cases some information about a <code>Person</code> class will go into the .dll or .class file, and the JVM/CLR will do stuff with this.</p> <p>C++ produces raw x86 binary code. Everything is <em>not</em> an object, and there's no underlying virtual machine which needs to know about a <code>Person</code> class. There's no boxing or unboxing, and functions don't have to belong to classes, or indeed anything. </p> <p>Because of this, the C++ compiler places no restrictions on what you can do with templates - basically any code you could write manually, you can get templates to write for you.<br /> The most obvious example is adding things:</p> <p>In C# and Java, the generics system needs to know what methods are available for a class, and it needs to pass this down to the virtual machine. The only way to tell it this is by either hard-coding the actual class in, or using interfaces. For example:</p> <pre><code>int addNames&lt;T&gt;( T first, T second ) { return first.Name() + second.Name(); } </code></pre> <p>That code won't compile in C# or Java, because it doesn't know that the type <code>T</code> actually provides a method called Name(). You have to tell it - in C# like this:</p> <pre><code>interface IHasName{ string Name(); }; int addNames&lt;T&gt;( T first, T second ) where T : IHasName { .... } </code></pre> <p>And then you have to make sure the things you pass to addNames implement the IHasName interface and so on. The java syntax is different (<code>&lt;T extends IHasName&gt;</code>), but it suffers from the same problems.</p> <p>The 'classic' case for this problem is trying to write a function which does this</p> <pre><code>int addNames&lt;T&gt;( T first, T second ) { return first + second; } </code></pre> <p>You can't actually write this code because there are no ways to declare an interface with the <code>+</code> method in it. You fail.</p> <p>C++ suffers from none of these problems. The compiler doesn't care about passing types down to any VM's - if both your objects have a .Name() function, it will compile. If they don't, it won't. Simple.</p> <p>So, there you have it :-)</p> http://stackoverflow.com/questions/31693/what-are-the-differences-between-generics-in-c-and-java-and-templates-in-c/33729#33729 8 Answer by Jörg W Mittag for What are the differences between Generics in C# and Java... and Templates in C++? Jörg W Mittag 2008-08-29T00:57:01Z 2008-08-29T01:08:19Z <p>There are already a lot of good answers on <em>what</em> the differences are, so let me give a slightly different perspective and add the <em>why</em>.</p> <p>As was already explained, the main difference is <em>type erasure</em>, i.e. the fact that the Java compiler erases the generic types and they don't end up in the generated bytecode. However, the question is: why would anyone do that? It doesn't make sense! Or does it?</p> <p>Well, what's the alternative? If you don't implement generics in the language, where <em>do</em> you implement them? And the answer is: in the Virtual Machine. Which breaks backwards compatibility.</p> <p>Type erasure, on the other hand, allows you to mix generic clients with non-generic libraries. In other words: code that was compiled on Java 5 can still be deployed to Java 1.4.</p> <p>Microsoft, however, decided to break backwards compatibility for generics. <em>That's</em> why .NET Generics are "better" than Java Generics.</p> <p>Of course, Sun aren't idiots or cowards. The reason why they "chickened out", was that Java was significantly older and more widespread than .NET when they introduced generics. (They were introduced roughly at the same time in both worlds.) Breaking backwards compatibility would have been a huge pain.</p> <p>Put yet another way: in Java, Generics are a part of the <em>Language</em> (which means they apply <em>only</em> to Java, not to other languages), in .NET they are part of the <em>Virtual Machine</em> (which means they apply to <em>all</em> languages, not just C# and Visual Basic.NET).</p> <p>Compare this with .NET features like LINQ, lambda expressions, local variable type inference, anonymous types and expression trees: these are all <em>language</em> features. That's why there are subtle differences between VB.NET and C#: if those features were part of the VM, they would be the same in <em>all</em> languages. But the CLR hasn't changed: it's still the same in .NET 3.5 SP1 as it was in .NET 2.0. You can compile a C# program that uses LINQ with the .NET 3.5 compiler and still run it on .NET 2.0, provided that you don't use any .NET 3.5 libraries. That would <em>not</em> work with generics and .NET 1.1, but it <em>would</em> work with Java and Java 1.4.</p> http://stackoverflow.com/questions/31693/what-are-the-differences-between-generics-in-c-and-java-and-templates-in-c/38286#38286 1 Answer by pek for What are the differences between Generics in C# and Java... and Templates in C++? pek 2008-09-01T18:53:36Z 2008-09-01T18:53:36Z <p>Looks like, among other very interesting proposals, there is one about refining generics and braking backwards compatibility:</p> <blockquote> <p>Currently, generics are implemented using erasure, which means that the generic type information is not available at runtime, which makes some kind of code hard to write. Generics were implemented this way to support backwards compatibility with older non-generic code. Reified generics would make the generic type information available at runtime, which would break legacy non-generic code. However, Neal Gafter has proposed making types reifiable only if specified, so as to not break backward compatibility.</p> </blockquote> <p>at <a href="http://tech.puredanger.com/java7#reified" rel="nofollow">Alex Miller's article about Java 7 Proposals</a></p> http://stackoverflow.com/questions/31693/what-are-the-differences-between-generics-in-c-and-java-and-templates-in-c/745989#745989 -1 Answer by David Plumpton for What are the differences between Generics in C# and Java... and Templates in C++? David Plumpton 2009-04-14T01:20:21Z 2009-04-14T01:20:21Z <p>One of them was a bold and courageous attempt at what might be a great new idea. The others were a failed rehash of the first despite all the empirical evidence that it was a terrible idea.</p> http://stackoverflow.com/questions/31693/what-are-the-differences-between-generics-in-c-and-java-and-templates-in-c/1109644#1109644 0 Answer by Earwicker for What are the differences between Generics in C# and Java... and Templates in C++? Earwicker 2009-07-10T13:49:57Z 2009-07-10T13:49:57Z <p>11 months late, but I think this question is ready for some Java Wildcard stuff.</p> <p>This is a syntactical feature of Java. Suppose you have a method:</p> <pre><code>public &lt;T&gt; void Foo(Collection&lt;T&gt; thing) </code></pre> <p>And suppose you don't need to refer to the type T in the method body. You're declaring a name T and then only using it once, so why should you have to think of a name for it? Instead, you can write:</p> <pre><code>public void Foo(Collection&lt;?&gt; thing) </code></pre> <p>The question-mark asks the the compiler to pretend that you declared a normal named type parameter that only needs to appear once in that spot.</p> <p>There's nothing you can do with wildcards that you can't also do with a named type parameter (which is how these things are always done in C++ and C#).</p>