在Java中,泛型(Generics)是一种编程语言特性,允许你在类、接口和方法中使用类型参数。这有助于提高代码的可重用性和类型安全性。要定义和使用多个泛型,只需在尖括号<>
内添加逗号分隔的类型参数列表。下面是如何定义和使用多个泛型的示例:
public class MultiGenericClass<T, U> {
private T first;
private U second;
public MultiGenericClass(T first, U second) {
this.first = first;
this.second = second;
}
public T getFirst() {
return first;
}
public void setFirst(T first) {
this.first = first;
}
public U getSecond() {
return second;
}
public void setSecond(U second) {
this.second = second;
}
}
在这个例子中,我们定义了一个名为MultiGenericClass
的类,它接受两个泛型类型参数T
和U
。
public class Main {
public static void main(String[] args) {
// 创建一个MultiGenericClass实例,其中T为String类型,U为Integer类型
MultiGenericClass<String, Integer> multiGeneric = new MultiGenericClass<>("Hello", 42);
System.out.println("First: " + multiGeneric.getFirst()); // 输出:First: Hello
System.out.println("Second: " + multiGeneric.getSecond()); // 输出:Second: 42
}
}
在这个例子中,我们创建了一个MultiGenericClass
实例,并为其指定了两个泛型类型参数:String
和Integer
。
public class GenericMethods {
public static <T, U> void printPair(T first, U second) {
System.out.println("First: " + first);
System.out.println("Second: " + second);
}
public static void main(String[] args) {
// 调用printPair方法,传入String和Integer类型的参数
printPair("Hello", 42);
}
}
在这个例子中,我们定义了一个名为printPair
的静态泛型方法,它接受两个泛型类型参数T
和U
。在main
方法中,我们调用了printPair
方法,并为其传入了String
和Integer
类型的参数。
总之,要定义和使用多个泛型,只需在尖括号<>
内添加逗号分隔的类型参数列表,并在使用时为这些类型参数指定具体的类型。这将提高代码的可重用性和类型安全性。