Java 1.5 提供了泛型支持。前几天,Sun发布了一篇tutorial。以下是对该tutorial的学习笔记。
http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf
Generics in the Java Programming Language
Gilad Bracha
Febrary 16, 2004.
1 泛型编译后实际上会产生不同的类型声明
public interface List<E> { void add(E x); Iterator<E> iterator(); } public interface Iterator<E> { E next(); boolean hasNext(); } |
基本的调用
List<Integer> myIntList = new LinkedList<Integer>(); myIntList.add(new Integer(0)); Integer x = myIntList.iterator().next(); |
Note 1: 每个泛型声明仅编译一次,并且为每个不同类型产生一个单独的文件。就像旧的类一样。比如,可能会有List<Integer>类和List<Boolean>类被产生。
原文:A generic type declaration is compiled once and for all, and turned into a single class file, just like an ordinary class or interface declaration.
编译后,相当于产生了下面的类
public interface IntegerList { void add(Integer x); Iterator<Integer> iterator(); } |
2 List<String>不是List<Object>的子类型
以下语句将无法通过编译,出现错误在第2行,因为lo不是ls的父类型。
List<String> ls = new ArrayList<String>(); List<Object> lo = ls; lo.add(new Object(); String s = ls.get(0); |
Note 2: 一般来说,如果Foo是Bar的子类型,G是泛型类型,那么G<Foo>不是G<Bar>的子类型。书上说这是泛型学习的最大难点。
原文:In general, if Foo is a subtype (subclass or subinterface) of Bar, and G is som generic type declaration, it is not the case that G<Foo> is a subtype of G<Bar>.
3泛型的父类型是<?>,通配符类型。
一个用到Collection的泛型方法如下,其中for循环用了新式的方法:
void printCollection(Collection<?> c){ for (Object e:c) System.out.println(e); } |
其中,Collection<?>表示其可以是任何类型。如Collection<Integer>,Collection<String>,Collection<?>是他们的父类型。
Note 3:Collection<?>是所有种类的子类。而不是Collection<Object>。这叫做“wildcard type”通配符类型。
原文:What is the supertype of all kinds of collections? It’s written Collection<?> (pronounced “collection of unknown”), that is, a collection whose element type matches anything. It’s called a wildcard type for obvious reason.
4 Bounded wildcards.有限制的通配符类型
很不幸,下面的方法调用无法成功。虽然List<Circle>中的每个对象都是Shape类型。
public void drawAll(List<Shape> shapes) { for(Shap s:shapes)s.deaw(); } drawAll(List<Circle> circles); |
通过bounded wildcard可以解决:然而这样做会带来一点代价。即,它是只读的,你不能再向List中添加新元素。
public void drawAll(List<? extends Shape> shapes){ // 下面的调用是错误的,只能读 shapes.add(0,new Circle()); } |
Note 4: <? extends Class>是一种限制通配符类型,它可以接受所有<Class>以及Class的子类型。然而调用代价是,只读访问。
原文:We have replaced the type List<Shape> with List<? extends Shape>. Now drawAll() will accept lists of any subclass of Shape. It is an example of a bounded wildcard. It is now illegal to write into shapes in the body of the method.
这是三分之一左右,地铁上看的,后面的还没看。
相关推荐
在C#编程中,泛型列表`List<T>`是一个非常重要的数据结构,它为我们提供了动态数组的功能,并且具有类型安全的特性。这篇文章将深入探讨`List<T>`的使用,包括其基本操作、性能特点以及一些高级用法。 一、基础概念...
例如,如果你有一个JSON数组,你可能希望将其解析为`IList<string>`或`IList<MyCustomClass>`,具体取决于JSON数据的内容。 C#中解析JSON通常使用的是Json.NET库,这是一个非常流行且功能强大的开源库,可以方便地...
Json转换为实体;Json转换为IList<T>;实体转换为Json;IList<T>转换为Json;
* 集合框架:泛型可以用于集合框架中,例如List<T>、Map<T,U>等。 * DAO设计模式:泛型可以用于DAO设计模式中,例如BaseHibernateEntityDao<T>等。 * 工具类:泛型可以用于工具类中,例如工具类的静态方法可以使用...
`List<T>`是.NET Framework中`System.Collections.Generic`命名空间下的一个泛型集合类,它实现了`IList<T>`、`ICollection<T>`和`IEnumerable<T>`接口。`List<T>`是用于存储强类型对象的动态数组,允许快速的插入和...
List<T>是泛型集合,它是System.Collections.Generic命名空间下的一个类。与ArrayList相比,List<T>更加安全,因为它在编译时就知道了元素的类型。以下是一个List<int>的示例: ```csharp List<int> numbersList = ...
private LinkedList<E> elements = new LinkedList<>(); ``` **构造方法**: ```java public Stack() { // 初始化空栈 } ``` **入栈(push)方法**: ```java public void push(E element) { elements.addFirst...
泛型类vector<T>源码分析
C# List<T>是.NET Framework中System.Collections.Generic命名空间下的一个泛型类,它是对非泛型ArrayList类的泛型等效版本,适用于处理强类型集合。List<T>使用动态数组的方式实现,允许元素数量按需动态增加,相比...
json字符串实体bean或者List<bean>互转(gson和jackson,支持泛型),支持json的格式化,所需要的包在代码也有说明。还有少的可以告知我,谢谢
`List<T>`是最常用的泛型集合之一,它实现了`IList<T>`、`ICollection<T>`和`IEnumerable<T>`接口。可以使用`Add`方法添加元素,`Remove`方法删除元素,以及`Find`方法查找满足条件的元素。通过索引访问元素,如同...
2. 作用:表示各种泛型的父类,例如 `List<String>` 和 `List<Integer>` 都是 `List<?>` 的子类。 3. 限制:不能向类型通配符集合中添加元素,因为不知道集合里的元素类型。 泛型方法: 1. 定义:使用类型形参定义...
接着,`Dictionary<TKey, TValue>`是一个键值对的集合,它实现了`IDictionary<TKey, TValue>`接口。`Dictionary`内部采用哈希表实现,提供了快速的查找、添加和删除操作。例如,你可以创建一个`Dictionary<string, ...
List<T>是最常用的泛型集合之一,代表了一个动态大小的元素列表,其中T表示元素的类型。例如,你可以创建一个存储整数的List<int>或存储字符串的List<string>。List<T>提供了添加、删除、查找和遍历元素等常用操作。...
另一个重要的泛型集合是Dictionary<TKey, TValue>,它是一个键值对的集合。例如,我们可以创建一个存储学生姓名和年龄的字典: ```csharp Dictionary<string, int> students = new Dictionary<string, int>(); ...
在这个“dictionary<>泛型数据案例”中,我们将深入探讨`Dictionary<,>`类以及与其相关的`List<T>`泛型集合的使用。 首先,让我们了解什么是泛型。泛型是.NET框架中的一个强大特性,它允许我们在定义类型(如类、...
例如,我们可以声明一个泛型接口`BaseDao<T>`,其中T代表我们将要操作的实体类型。这样,每个具体的DAO实现类(如`UserDao extends BaseDao<User>`)就可以操作特定的实体类型,而无需重复编写相同的方法。 ...
template <> void swap(int& a, int& b) { std::swap(a, b); // 使用内置的交换函数,可能更高效 } ``` 模板模板参数则允许我们为接受其他模板作为参数的模板编写代码,例如`std::allocator`模板: ```cpp ...
泛型List<T>中有一个比较列表是否已包含对象的方法Contains<T>(),今天在网上搜了一个用法,记录下来,备查。 要用此方法比较我们的自定义对象,首先要有一个比较器, 要注意的是,这里的比较器是实现...