Skip to main content

By clicking Submit, you agree to the developerWorks terms of use.

The first time you sign into developerWorks, a profile is created for you. Select information in your profile (name, country/region, and company) is displayed to the public and will accompany any content you post. You may update your IBM account at any time.

All information submitted is secure.

  • Close [x]

The first time you sign in to developerWorks, a profile is created for you, so you need to choose a display name. Your display name accompanies the content you post on developerworks.

Please choose a display name between 3-31 characters. Your display name must be unique in the developerWorks community and should not be your email address for privacy reasons.

By clicking Submit, you agree to the developerWorks terms of use.

All information submitted is secure.

  • Close [x]

Introduction to generic types in JDK 5.0

Brian Goetz (brian@quiotix.com), Principal Consultant, Quitox
Brian Goetz is a regular columnist on the developerWorks Java zone and has been a professional software developer and manager for the past 18 years. He is a Principal Consultant at Quiotix, a software development and consulting firm in Los Altos, CA. See Brian's published and upcoming articles in popular industry publications.

Summary:  "This tutorial introduces generic types, a new feature in JDK 5.0 that lets you define classes with abstract type parameters that you specify at instantiation time. Generics increase the type safety and maintainability of large programs. Follow along with frequent developerWorks contributor and Java programming expert Brian Goetz, as he explains the motivation for adding generics to the Java language, details the syntax and semantics of generic types, and provides an introduction to using generics in your classes."

Date:  07 Dec 2004
Level:  Introductory

Activity:  43582 views
Comments:  

Before you start

About this tutorial

JDK 5.0 (also called Java 5.0 or "Tiger") brings some major changes to the Java language. The most significant change is the addition of generic types (generics) -- support for defining classes with abstract type parameters that you specify at instantiation time. Generics offer substantial potential to increase the type safety and maintainability of large programs.

Generics interact synergistically with several of the other new language features in JDK 5.0, including the enhanced for loop (sometimes called the foreach or for/in loop), enumerations, and autoboxing.

This tutorial explains the motivation for adding generics to the Java language, details the syntax and semantics of generic types, and provides an introduction to using generics in your classes.

This tutorial is intended for intermediate and advanced Java developers who want to learn how the new language support for generics works. It is assumed that readers are familiar with developing interfaces and classes in the Java language, and with basic object-oriented design techniques.

The generics language feature is available only in JDK 5.0 and later. If you are developing software based on earlier JDK versions, you cannot use the generics features in your code until you migrate to JDK 5.0 or later.


Prerequisites

You must have a JDK 5.0 development environment available to you in order to use generics. You can download JDK 5.0 for free from the Sun Microsystems Web site.

1 of 10 | Next

Comments



static.content.url=http://www.ibm.com/developerworks/js/artrating/
SITE_ID=1
Zone=Java technology
ArticleID=131583
TutorialTitle=Introduction to generic types in JDK 5.0
publish-date=12072004
author1-email=brian@quiotix.com
author1-email-cc=