vote up 6 vote down star
2

At the risk of becoming the village idiot, can someone explain to me why generics are called generics? I understand their usage and benefits, but if the definition of generic is "general" and generic collections are type safe, then why isn't this a misnomer?

For example, an ArrayList can hold anything that's an object:

ArrayList myObjects = new ArrayList();
myObjects.Add("one");
myObjects.Add(1);

while a generic collection of type string can only hold strings:

var myStrings = new List<string>();
myStrings.Add("one");
myStrings.Add("1");

I'm just not clear on why it's called "generic". If the answer is "...which make it possible to design classes and methods that defer the specification of one or more types until the class or method is declared and instantiated by client code." from here, then I suppose that makes sense. Perhaps I'm having this mental lapse because I only began programming after Java introduced generics, so I don't recall a time before them. But still...

Any help is appreciated.

flag

7 Answers

vote up 8 vote down check

"Generic" is talking about the implementation. You write a single "Generic" list implementation that works with any type, instead of having to write specific implementations for each type you want to use.

link|flag
Ok, this makes sense. So the implementation is generic, until you instantiate it, at which point it becomes a "specific" generic? :) – Jonathan S. Nov 21 '08 at 16:09
Or rather, you're taking a specific instance of the generic :P – trex279 Nov 21 '08 at 17:05
Don't use instance like that, "instance" already means something, – David B Nov 21 '08 at 19:13
vote up 0 vote down

If they called it "type parameter(s)" people would confuse it with parameters of type Type.

Also, ArrayList isn't "generic". It ONLY works with types of object. If you ask it for something, it will give you an object reference. That's a very specific behavior.

link|flag
Thanks, I was researching that and came across this post in my Googling, bytes.com/forum/thread244697.html at which time I realized that Jon Skeet is in all places at all times. – Jonathan S. Nov 21 '08 at 16:12
vote up 0 vote down

I am not a "native" English Speaker, so I could be wrong but the point of the "Generics" is that the Define Generics types, isn't it?

link|flag
vote up 0 vote down

I dont want to get into the semantics of language (english, not java), and at the risk of answering you with a tautology; a generic method is called generic because, as you said, its can be used the the general sense, it doesnt have a specific type, it can be used generally

link|flag
vote up 0 vote down

A class which takes objects is NOT generic, it is very specifically taking a type which is itself a generic type. A generic class, on the other hand, can be used with any specific type.

link|flag
vote up 0 vote down

Because you are creating "Generic" code that will be capable of operating on any type (within constraints you specify) in the same way...

a good example you are familiar with is the Add operator is just about any language... it can "Add" integers, floats, doubles, decimals, binarys, hexadecimals, regardless of whether they are signed, unsogned, how many bits they are, etc...

link|flag
vote up 0 vote down

Okay, take this with a grain of salt, because I'm totally guessing, but I wonder whether it might be a bastardization of "Generative Types".

Conceptually, when you specialize a List into a List< String >, it generates a new type. At least, that's the way it works in C++ templates and in C# generics.

In Java, since the parameterizations are discarded by the compiler using type erasure, it actually doesn't generate a new specialized type, so who knows?

I suppose you could say that Java implements a genericized version of generative types :)


ON EDIT:

Here's another point of view...

The type List< String > is not what they're talking about when they refer to a "generic" type. I think the terminology is actually referring to the List< T > type, which is how the type exists in its generic form. List< String > is a specialization of the generic List< T >.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.