java 泛型的问题_java 泛型问题

本问题需要对泛型有深刻了解,原理题主明白,只是不明白我下面说明的这个问题

代码如下

public class Shape implements Comparable {

@Override

public int compareTo(Shape o) {

return 0;

}

}

public class Square extends Shape {

}

public class TestGenetic {

public static > AnyType findMax(AnyType[] arr){

int maxIndex=0;

for (int i = 0; i

if (arr[i].compareTo(arr[maxIndex+1])>0)

maxIndex=i;

}

return arr[maxIndex];

}

public static void main(String[] args) {

Shape[] shapes={new Shape(),new Shape()};

Square[] squares={new Square(),new Square()};

findMax(shapes);

findMax(squares);

}

}

若修改一下泛型泛型方法中的泛型:

public class TestGenetic {

public static > AnyType findMax(AnyType[] arr){

int maxIndex=0;

for (int i = 0; i

if (arr[i].compareTo(arr[maxIndex+1])>0)

maxIndex=i;

}

return arr[maxIndex];

}

public static void main(String[] args) {

Shape[] shapes={new Shape(),new Shape()};

Square[] squares={new Square(),new Square()};

findMax(shapes);

findMax(squares);

}

}

同样不会报错

但是,在泛型类中则不是这样

public class TestGeneric1> {

public static void main(String[] args) {

TestGeneric1 p=null;

}

}

这种不会报错,但是,如果我修改一下泛型,如下:

public class TestGeneric1> {

public static void main(String[] args) {

TestGeneric1 p=null;//编译报错

}

}

则编译报错,请问为什么在泛型类中会进行泛型检查,而泛型方法中不进行检查呢,在泛型方法中,Square明明不符合AnyType extends Comparable这一条件呀

请指教,谢谢

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值