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 9230957
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T05:56:56+00:00 2026-06-18T05:56:56+00:00

I have an Object that sometimes contains a List<Object> . I want to check

  • 0

I have an Object that sometimes contains a List<Object>. I want to check it with instanceof, and if it is, then add some elements to it.

void add(Object toAdd) {
    Object obj = getValue();
    if (obj instanceof List<?>) {
        List<?> list = obj;
        if (list instanceof List<Object>) {    // Error
            ((List<Object>) list).add(toAdd);
        } else {
            List<Object> newList = new ArrayList<Object>(list);
            newList.add(toAdd);
            setValue(newList);
        }
        return;
    }
    throw new SomeException();
}

And it says I can’t check if it is instanceof List<Object> because java doesn’t care and erased the type in <>.
Does this mean I have to create new ArrayList every time? Or is there a way to check that, eg. with reflection?

  • 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-06-18T05:56:57+00:00Added an answer on June 18, 2026 at 5:56 am

    I was wrong in my previous answer since i not fully understood your requirements.
    if your added item is an Object you may add it without any problem as long as you Have a list of something.
    You don’t have to recreate the list

    void add(Object toAdd) {
        Object obj = getObject();
        if (obj instanceof List<?>) {
            ((List<Object>)obj).add(toAdd);
            return;
        }
        throw new SomeException();
    }
    

    UPDATE

    as answer to few comments, there is no problem to add any object to a list, and there is no problem to find out what type of object it is during iteration after it:

    List<String> x1 = new ArrayList<String>();
    Object c3 = x1;
    x1.add("asdsad");
    Integer y2 = new Integer(5);
    if (c3 instanceof List<?>){
         ((List<Object>)c3).add((Object)y2);
    }
    
    for (Object i : (List<Object>)c3){
        if (i instanceof String){
            System.out.println("String: " + (String)i);
        }
        if (i instanceof Integer){
            System.out.println("Integer: "+ (Integer)i);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an object model that contains a list of longs. I want to
I have an list of objects that contains another object in it. List<MyClass> myClass
I have a list object that contains nested lists, each includes a data frame.
I have an object MyObject that contains a property MyProp that is sometimes numeric.
I have an object that I convert into NSData using an NSKeyedArchiver and then
I have some object that's been added to the body of my page via
I have a object that contains data from a DB. The object has a
I'm working with an API that sometimes contains a list of child objects: {
I have an xml document that contains some html. <begin-line> <verse-num>6</verse-num>a mixed people<footnote id=f2>
Background Info I have a class that contains an NSDate object that is used

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.