方法带泛型
Posted 老邱2
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了方法带泛型相关的知识,希望对你有一定的参考价值。
package com; public class GenericMethodTest { // 方法上的泛型 public static <E> void getArray(E[] e) { for (E e2 : e) { System.out.println(e2); } } public static void main(String[] args) { Integer a[] = { 1, 2, 3 }; String b[]={"a","b","c"}; P pp1=new P(); P pp2=new P(); P pp3=pp2; P [] p={pp1,pp2,pp3}; getArray(p); } } class P{ }
以上是关于方法带泛型的主要内容,如果未能解决你的问题,请参考以下文章
java Iterable接口为啥不能带泛型通配符?或者:为啥我不能重写 iterator() 方法为子类返回一个 Iterator?