您好,登錄后才能下訂單哦!
在Java中,泛型類中的泛型方法可以指定返回類型。泛型方法的返回類型可以是任何類型,包括泛型類型和非泛型類型。當指定泛型方法的返回類型時,該類型將用于實例化方法返回的對象。
以下是一個示例,演示了如何在泛型類中定義泛型方法并指定返回類型:
public class GenericBox<T> {
private T item;
public GenericBox(T item) {
this.item = item;
}
public T getItem() {
return item;
}
public void setItem(T item) {
this.item = item;
}
public T createBox(T item) {
GenericBox<T> box = new GenericBox<>(item);
return box;
}
}
在上面的示例中,GenericBox
是一個泛型類,它有一個類型參數 T
。類中有三個方法:構造函數 GenericBox(T item)
,getItem()
和 setItem(T item)
。此外,還有一個泛型方法 createBox(T item)
,它接受一個類型為 T
的參數,并返回一個新的 GenericBox<T>
對象。
在 createBox
方法中,我們使用傳入的參數 item
創建一個新的 GenericBox<T>
對象,并將其返回。由于 T
是泛型類型參數,因此我們可以使用任何類型來實例化 GenericBox<T>
對象。
以下是如何使用 GenericBox
類和 createBox
方法的示例:
public class Main {
public static void main(String[] args) {
GenericBox<Integer> intBox = new GenericBox<>(123);
Integer intValue = intBox.getItem();
System.out.println("Integer value: " + intValue);
GenericBox<String> strBox = new GenericBox<>("Hello, world!");
String strValue = strBox.getItem();
System.out.println("String value: " + strValue);
GenericBox<Double> doubleBox = new GenericBox<>(3.14);
Double doubleValue = doubleBox.getItem();
System.out.println("Double value: " + doubleValue);
GenericBox<Integer> newIntBox = intBox.createBox(456);
Integer newIntValue = newIntBox.getItem();
System.out.println("New Integer value: " + newIntValue);
}
}
在上面的示例中,我們創建了三個不同類型的 GenericBox
對象:一個用于存儲 Integer
類型的值,一個用于存儲 String
類型的值,一個用于存儲 Double
類型的值。然后,我們使用 createBox
方法創建了一個新的 GenericBox<Integer>
對象,并將其返回。最后,我們打印出每個對象中存儲的值。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。