阅读量:0
在Java中,可以使用泛型来指定方法的返回值类型。例如,下面是一个简单的示例:
public class GenericExample { public static <T> T getValue(T value) { return value; } public static void main(String[] args) { String stringValue = getValue("Hello World"); Integer intValue = getValue(100); System.out.println(stringValue); System.out.println(intValue); } }
在上面的示例中,getValue
方法使用了泛型 <T>
来指定返回值的类型。在调用 getValue
方法时,可以传入不同类型的参数,并且方法会返回相应类型的值。
注意:在实际使用中,需要注意泛型类型参数的边界和约束,以确保代码的类型安全性和正确性。