java泛型约束_Java泛型,接口和类型约束

参见英文答案 >

What is a raw type and why shouldn’t we use it?                                    14个

给定一个通用接口:

public interface I {

public int interfaceMethod(E s);

}

以及实现接口的泛型类

public class A implements I {

private T val;

public A(T x) {

val = x;

}

public int interfaceMethod(T val) {

// looks like T should be of the same type as instance variable 'val'

return 0;

}

}

为什么以下工作?

public class Run {

public static void main(String[] args) {

A a = new A("hello");

System.out.println(a.interfaceMethod(100)); \\ returns 0

}

}

我期望在类A中定义的方法interfaceMethod的T type参数将方法约束为与提供给A的构造函数的类型相同的参数(在本例中为String).

为什么a.interfaceMethod不需要String类型的参数?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值