泛型接口的定义方式与泛型类类似。在所示示例中:
收容界面:
创建了一个名为 Containment 的通用接口,由存储一个或多个值的类来实现。
contains() 方法:
声明 contains(T o) 方法,该方法检查调用对象中是否存在特定值。
此示例展示了如何创建自定义通用接口来满足特定要求,例如操作和检查存储的元素。
// 处理存储的通用接口。
// 该接口需要用户类
// 有一个或多个值。
interface Containment { // 通用接口。
// contains() 方法检查是否有一个 item
// 指定包含在 中
// 实现 Containment 的对象。
布尔包含(T o);
}
// 使用数组实现 Containment
// 存储值。
//每个实现泛型接口的类也必须是泛型的。
class MyClass 实现 Containment { //
T[] arrayRef;
MyClass(T[] o) {
arrayRef = o;
}
// 实现 contains()
公共布尔包含(T o){
for(T x : arrayRef)
if(x.equals(o)) 返回 true;
返回错误;
}
}
GenIFDemo 类 {
public static void main(String args[]) {
整数 x[] = { 1, 2, 3 };
MyClass ob = new MyClass(x);
if(ob.contains(2))
System.out.println("ob 中有 2");
其他
System.out.println("2 不在 ob 中");
if(ob.contains(5))
System.out.println("ob 中有 5");
其他
System.out.println("5 不在 ob 中");
// 以下部分无效,因为 ob
// 是 Integer 类型的 Containment 对象并且
// 9.25 是一个 Double 值。
// if(ob.contains(9.25)) // 无效!
// System.out.println("9.25 位于 ob");
}
}
通用接口声明:
Containment 泛型接口使用类型参数 T 进行声明,该参数指定所包含对象的类型。
通用类的实现:
MyClass 类实现 Containment 接口,其中 T 被传递给两者。要实现通用接口,该类通常也必须是通用的。
具体类型:
如果接口是为特定类型实现的,例如 Double,则该类不需要是通用的:
class MyClass Implements Containment { // 正确!
类型参数限制:
您可以使用 extends 来限制接口类型参数,如 Containment 中那样。
在这种情况下,任何实现该接口的类也必须遵守该限制,例如:
类 MyClass 实现 Containment {
常见错误:
为类型参数建立限制后,无需在 Implements 子句中重复它们。尝试声明如下所示的内容,这将导致错误。
实现 Containment
通用语法:
通用接口声明:
接口名称-interface { // ...
通过泛型类实现:
class class-name 实现接口名称 { // ..
以上就是通用接口的详细内容,更多请关注图灵教育其它相关文章!