posted @ 2010-11-22 05:53 Ardor Leo 閱讀(2293) | 評(píng)論 (0) | 編輯 收藏
摘要: 4.1. Generic Types
Generic types and methods are the defining new feature of Java 5.0. A generic type is defined using one or more type variables and has one or more methods that use a type variable as a placeholder for an argument or return type. For example, the type java.util.List is a generic type: a list that holds elements of some type represented by the placeholder E. This type has a method named add(), declared to take an argument of type E, and a method named get(), 閱讀全文
Generic types and methods are the defining new feature of Java 5.0. A generic type is defined using one or more type variables and has one or more methods that use a type variable as a placeholder for an argument or return type. For example, the type java.util.List
posted @ 2006-09-21 05:05 Ardor Leo 閱讀(1901) | 評(píng)論 (2) | 編輯 收藏