返回不同的POJO我想返回一個不同類型的列表如何使用Java泛型
的方法,我試圖像下面,但不知道這種做法是否正確。有人可以幫助我如何做到這一點?
public <T> List<T> getPageDetails(Long adId,String source);
並根據source
我會在實現方法返回不同的List of objects
。
like in implementation if the source is 1, then will have to return List of objects type1 if the source is 2 then list of objects type2 etc
plaese闡述更多。 –
你不想要返回一個列表嗎?所以肯定'公衆列表 getPageDetails(長adId,字符串源);'會更有意義? –