Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7546887
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T09:18:54+00:00 2026-05-30T09:18:54+00:00

I have a method like this- public List<Apples> returnFruits(String arg1){ List<Apples> fruits = new

  • 0

I have a method like this-

public List<Apples> returnFruits(String arg1){
List<Apples> fruits = new ArrayList<Apples>();
Apple a = new Apple();
fruits.add(a);

return fruits;
}

I would like to change it, so that I can specify the fruit type from the method call and return that fruit list. So the 2nd statement should dynamically instantiate the list of fruits that I pass. I thought of this-

public List<?> returnFruits(String arg1){
List<T> fruits = new ArrayList<T>();
T t = new T();
fruits.add(t);

return fruits;
}

But don’t know the right way to do it, as you can see.

In the second method, I just return the fruit instead of the list-

public T returnFruit(){
T t = new T();
return t;
}

The fruits that are passed are NOT in the same class hierarchy and are different types.

Thank you.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T09:18:55+00:00Added an answer on May 30, 2026 at 9:18 am

    There are a number of approaches you could take. One is to use Class<T> as others have suggested. Another would be to create some sort of producer interface, and pass that in:

    public interface FruitProducer<T> {
        T createFruit(String arg);
    }
    
    public <T> List<T> returnFruits(String arg, FruitProducer<? extends T> producer) {
        List<T> list = new ArrayList<T>();
        T fruit = producer.createFruit(arg);
        list.add(fruit);
        return list;
    }
    

    You have different producers for different fruits: AppleProducer implements FruitProducer<Apple>, OrangeProducer implements FruitProducer<Orange>, etc. This approach just kicks the can a bit — the FruitProducer still has to create the fruits somehow — but it could be a useful refactoring.

    Yet another approach relies on the same polymorphism as the FruitProducer approach by making the class with returnFruits abstract:

    public abstract class FruitLister<T> {
        public abstract List<T> returnFruits(String arg);
    }
    

    Now you have different listers: AppleLister implements FruitLister<Apple>, etc. Each knows how to instantiate the specific classes it needs to return in a list:

    public class AppleLister implements FruitLister<Apple> {
        @Override
        public List<Apple> returnFruits(String arg) {
                List<Apple> list = new ArrayList<Apple>();
                Apple apple = new Apple(arg);
                list.add(apple);
                return list;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If I have a method like this: public void DoSomething(int Count, string[] Lines) {
I have a method that looks like this: public static String escape(String text) {
I have a method in my controller like this: @RequestMapping(value=getData, method=RequestMethod.GET) @ResponseBody public List<MyDataObj>
I have a method like this: public List<MyObjects> All<TEntity>(params LambdaExpression[] exprs) with the intention
I have a method like this: public List<Fruit> Traverse (IEnumerable<Fruit> collection, Action<Fruit> action) I
Assume I have a controller method like this: [Audit] public JsonNetResult List(int start, int
Let's assume I have a method like this: public static List<T> Get<T>(this SomeObject<T>, Expressions<Func<T,bool>>
I have an interface defining a method like this : public List<IA> myMethod(); with
I have this search method: public List<Employeees> AutoSuggestEmployeee(string keyword, long employeeeTypeId, int count) {
I have a method which looks like this public void setDayIntervals(Days day, List<HourRange> ranges)

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.