posted 17 years ago
Generics are a way of improving the type-safety of your code, by giving explicit types where previously one typically had to use Object.
It makes the code easier to understand, once you understand the syntax, and helps the compiler to spot certain types of programming error.
Generics type information is not included in the class files generated by the compiler ("type erasure") so they have little or no impact on how your program runs.
For more, search java.sun.com for "generics" and find their article.
Betty Rubble? Well, I would go with Betty... but I'd be thinking of Wilma.