java泛型元祖_Java 泛型

一般的类和方法中只能使用具体的类型,如果要使编写的代码可以应用于多种类型,可以使用多态或泛型。但是多态在定义时必须指定相应的基类或接口,由于类可以不断扩展,因此单继承体系会带来一定的性能损耗;而接口对程序约束性太强,代码必须使用特定的接口。使用泛型则可以编写更加通用的代码,使得代码能够应用于“某种不具体的类型”,而不是一个具体的类或接口。Java的泛型机制是在编译级别实现的。编译器生成的字节码在运行期间并不包含泛型的类型信息。Java中的容器类最常使用泛型,用来指定容器中持有对象的类型,并且由编译器来保证类型的正确性。

1. 泛型类

a. 容器类(栈)

public class LinkedStack{private static class Node{

U item;

Nodenext;public Node() { item = null; next = null;}public Node(U item, Node next) { this.item = item; this.next =next; }public boolean end(){ return item == null && next == null; }

}private Node top = new Node();public voidpush(T item) {

top= new Node(item, top);

}publicT pop() {

T result=top.item;if(!top.end()) top =top.next;returnresult;

}public static voidmain(String[] args) {

LinkedStack stack = new LinkedStack();for(String s : "first second third".split(" ")) stack.push(s);

String s;while((s = stack.pop()) != null) System.out.println(s);

}

}

b. 元组

方法的return只能返回一个对象,如果要返回多个对象可以创建一个类来存放这些对象。为了用一个通用的类来解决这个问题,可以使用泛型类来创建一组对象,称为元组。这个容器对象允许读取其中元素,但不能修改元素。

class TwoTuple {public final A first; //public表示可以随时获取该元素,final确保无法再次赋值,保证了元素的安全性

public finalB second;public TwoTuple(A a, B b) { first = a; second =b; }publicString toString() {return "(" + first + ", " + second + ")";

}

}public class ThreeTuple extends TwoTuple { //可随意扩展元组的元素

public finalC third;public ThreeTuple(A a, B b, C c) { super(a, b); third =c; }publicString toString() {return "(" + first + ", " + second + ", " + third + ")";

}public static voidmain(String[] args) {

System.out.println(new TwoTuple("abc", 5));

System.out.println(new ThreeTuple(1, "2", 3.0));

}

}

2. 泛型接口

interface Generator{publicT generate();

}class Fibonacci implements Generator { //基本类型不能作为类型参数,不过Java SE5的封装类实现了自动封装机制

private static int count = 0;

@OverridepublicInteger generate() {return fib(count++);

}private int fib(intn) {if(n < 2) return 1;return fib(n - 2) + fib(n - 1);

}

}public class IterableFibonacci extends Fibonacci implements Iterable{ //适配器,添加新功能且不更改原始类

int n = 0;public IterableFibonacci(intn){this.n =n;

}

@Overridepublic Iteratoriterator() {return new Iterator(){public boolean hasNext() { return n>0; }public Integer next() { n--; return IterableFibonacci.this.generate(); } //generate方法是其父类Fibonacci的方法

};

}public static voidmain(String[] args) {for(int i : new IterableFibonacci(10))

System.out.println(i);

}

}

3. 泛型方法

泛型方法所在的类可以使泛型类,也可以不是泛型类。泛型方法使得方法可以独立于类而产生变化,应尽量使用泛型方法。使用泛型方法的时候,通常不用指明参数类型,编译器会根据参数值自动推断类型。泛型方法的定义和普通方法定义不同的地方在于需要在修饰符和返回类型之间加一个泛型类型参数的声明,例如:public static int func(List list) { ... }

a. 对象生成类(简化语法)

classTuple {public static TwoTupletwoTuple(A a, B b){return new TwoTuple(a, b);

}public static voidmain(String[] args) {

System.out.println(Tuple.twoTuple("s", 1));

}

}

b. 通用的对象生成类

public class BasicGenerator implements Generator{private Classtype;private BasicGenerator(Classtype){this.type =type;

}public static BasicGenerator create(Classtype) {return new BasicGenerator(type);

}publicT next() {try{returntype.newInstance();

}catch(Exception e) {throw newRuntimeException(e);

}

}

}

匿名内部类

classCustomer {private Customer() {} //私有构造器强制你使用Generator来生成对象

public static Generatorgenerator(){return new Generator(){ //匿名内部类

public Customer next() { return newCustomer(); }

};

}public static voidmain(String[] args) {

System.out.println(Customer.generator());

}

}

构建复杂模型

classStudent {intno;public Student(intno) {this.no =no;

}

}class Grade extends ArrayList{public Grade(intn) {for(int i = 0; i < n; i++)

add(newStudent(i));

}

}class School extends ArrayList{ // 多层容器public School(int m, intn) {for(int i = 0; i < m; i++)

add(newGrade(n));

}

}

擦除

Java泛型的处理几乎都在编译器中进行,编译器生成的bytecode是不包含泛型信息的,泛型类型信息将在编译处理是被擦除,这个过程即类型擦除。擦除使我们在泛型代码内部,无法获得任何有关参数类型的信息。使用擦除的主要原因是为了“迁移兼容性”,即允许泛型代码与非泛型代码共存。为了兼容以前的代码,使得某个类库变为泛型时不会破坏依赖于它的代码,所以采取了折中的办法。擦除的主要作用是在不破坏现有类库的情况下,实现从非泛化代码到泛化代码的转变,将泛型融入Java语言。

类型擦除的主要过程如下:1.将所有的泛型参数用其最左边界(最顶级的父类型)类型替换。2.移除所有的类型参数。

泛型数组

在Java中可以使用ArrayList,避免使用中出现类型转换错误。

class Generic{

T value;publicGeneric(T value) {this.value =value;

}

}class GenericArray{

List array1; //一般使用ArrayList代替数组

T[] array2;

T[] array3;

Object[] array4;public GenericArray(int size, Classtype) {

array1= new ArrayList(size);

array2= (T[]) Array.newInstance(type, size); //type参数为实际类型,使得擦除得到恢复

array3 = (T[]) new Object[size]; //不能写成 array3 = new T[size],array3因为擦除在运行时的类型为Object[]

array4 = new Object[size]; //使用Object[]我们比较容易记住数组运行时的类型,从而及早解决问题

}publicT[] getArray3() {return array3; //class [Ljava.lang.Object;

}publicT[] getArray4() {return (T[]) array4; //class [Ljava.lang.Object;

}public void setArrayElem(intindex, T a) {

array3[index]=a;

}}public classGenericTest {public static voidmain(String[] args) {int size = 2;//类型转换错误 [Runtime Error] java.lang.ClassCastException: java.lang.Object cannot be cast to Generic//Generic[] array1 = (Generic[]) new Object[size];//不能创建确切类型的数组 [Compile Error] Cannot create a generic array of Generic//Generic[] array1 = new Generic[size];

Generic[] array1 = (Generic[]) newGeneric[size];

GenericArray array = new GenericArray(size, String.class);String[] str1= array.getArray3(); //实际运行类型为Object[],而不是确切类型String[] [Runtime Error] java.lang.ClassCastException

String[] str2 = array.getArray4(); //实际运行类型为Object[],而不是确切类型String[] [Runtime Error] java.lang.ClassCastException

}

}

JDK 中的ArrayList使用Object数组作为基础数据结构,当创建的数组元素是有确切类型时,获取时的类型转换(T[])就不会出错。

public class ArrayList extends AbstractList

implements List, RandomAccess, Cloneable, java.io.Serializable

{transient Object[] elementData; //non-private to simplify nested class access

public ArrayList(intinitialCapacity) {if (initialCapacity > 0) {this.elementData = new Object[initialCapacity]; //数组的创建跟普通Object数组一样

} else if (initialCapacity == 0) {this.elementData =EMPTY_ELEMENTDATA;

}else{throw new IllegalArgumentException("Illegal Capacity: "+initialCapacity);

}

}

@SuppressWarnings("unchecked")public T[] toArray(T[] a) {if (a.length

return(T[]) Arrays.copyOf(elementData, size, a.getClass());

System.arraycopy(elementData,0, a, 0, size);if (a.length >size)

a[size]= null;returna;

}public E get(intindex) {

rangeCheck(index);returnelementData(index);

}public E set(int index, E element) { //element是有类型信息的,因此存放到数组的元素是有确切类型的

rangeCheck(index);

E oldValue=elementData(index);

elementData[index]=element;returnoldValue;

}

@SuppressWarnings("unchecked")

E elementData(intindex) {return(E) elementData[index];

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值