概述
【相关学习推荐:java基础教程】
有时您可能想限制可以在参数化类型中用作类型参数的类型。 例如,对数字进行操作的方法可能只希望接受Number或其子类的实例。 这就是有界类型参数的用途。
受限制参数类型的方法示例
要声明有界类型参数,请列出类型参数的名称,后跟extends关键字,然后是其上限,在本例中为Number
请注意,在这种情况下,extends通常用于表示“扩展”(如在类中)或“实现”(如在接口中)。
package generics;
/**
* 定义受限制的方法
*
* @author psdxdgK1DT
*
*/
public class Box<T> {
private T t;
public void set(T t) {
this.t = t;
}
public T get() {
return t;
}
/**
* 通过修改我们的通用泛型方法以包含此有界类型参数,现在编译将失败,因为我们对inspect的调用仍包含String:
* By modifying our generic method to include this bounded type parameter
* compilation will now fail, since our invocation of inspect still includes a String:
* inspect:单词:检查
* @param <U>
* @param u
*/
public <U extends Number> void inspect(U u) {
System.out.println("T:" + t.getClass().getName());
System.out.println("U:" + u.getClass().getName());
}
public static void main(String[] args) {
Box<Integer> integerBox = new Box<Integer>();
integerBox.set(new Integer("some text"));
integerBox.inspect("some test");这里会出现预编译错误
integerBox.inspect(10);
}
}
登录后复制
在显示器上会出现红色的波浪线表示编译错误
如果强行编译则会报错:
译文:
未解决的编译错误
Box类的inspect(U)方法不可应用于(String)类型参数
使用受限类型参的类可调用受限边界方法
除了限制可用于实例化泛型类型的类型外,有界类型参数还允许您调用在边界中定义的方法:
//使用受限类型参数的类
public class NaturalNumber<T extends Integer> {
private T n;
public NaturalNumber(T n) { this.n = n; }
public boolean isEven() {
return n.intValue() % 2 == 0;
}
// ...
登录后复制
isEven方法通过n调用Integer类中定义的intValue方法。
多重受限边界(Multiple Bounds)
泛型算法
有界类型参数是实现泛型算法的关键。考虑下面的方法,该方法计算数组T[]中大于指定元素elem的元素数。
public static <T> int countGreaterThan(T[] anArray, T elem) {
int count = 0;
for (T e : anArray)
if (e > elem) // compiler error
++count;
return count;
}
The implementation of the method is straightforward,
but it does not compile because the greater than operator (>) applies only to primitive types
such as short, int, double, long, float, byte, and char.
You cannot use the > operator to compare objects. To fix the problem, use a type parameter
bounded by the Comparable<T> interface:
public interface Comparable<T> {
public int compareTo(T o);
}
The resulting code will be:
public static <T extends Comparable<T>> int countGreaterThan(T[] anArray, T elem) {
int count = 0;
for (T e : anArray)
//因为这里的T是受限制的类型参数,实现了Comparable接口,于是可以使用接口的方法compareTo
if (e.compareTo(elem) > 0)
++count;
return count;
}
登录后复制
以上就是java如何定义受限制的类型参数的详细内容,更多请关注靠谱客其它相关文章!
最后
以上就是着急大象为你收集整理的java如何定义受限制的类型参数的全部内容,希望文章能够帮你解决java如何定义受限制的类型参数所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复