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

  • Home
  • SEARCH
  • 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 6766915
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T14:53:19+00:00 2026-05-26T14:53:19+00:00

I am having a problem with seeing subclass attributes in an ArrayList. Here’s some

  • 0

I am having a problem with seeing subclass attributes in an ArrayList.

Here’s some snippets of the main parts of my code that matter here.

private ArrayList<Person> people = new ArrayList<Person>;

abstract class Person {
String fName;
String lName;
}

public class Employee extends Person {
protected int empID;
}

public class Client extends Person {
protected int clientID;
}

When using a for loop to search by clientID, I am getting

Enterprise.java:134: cannot find symbol
symbol : variable clientID
location: class Person

I have tried with and without instanceof Client on the for loop. I have also tried using Client instead of Person in the for loop parameters.

for(Person x : people) {
if(x.clientID == cid) {
    System.out.println(x);
}

Before turning these into subclasses I had them in an ArrayList of their own kind and everything worked flawlessly.

Any help would be greatly appreciated!

  • 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-26T14:53:19+00:00Added an answer on May 26, 2026 at 2:53 pm

    You have to either put them in a seperate list or cast them:

    for (Person person : people) {
      if (person instanceof Client) {
        Client client = (Client) person;
        if (client.clientID == cid) {
          System.out.println("found!");
        }
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We are having problem with the server migration. We have one application that are
I am having a problem with Hibernate seeing my domain objects doing a purely
I am having a problem Scraping Code i require to extract information for a
I'm having a little bit of trouble understanding what the problem is here. I
I'm having a problem with a Delphi Pro 6 application that I wrote on
Im having a problem with my code atm and Im not sure what the
I’m having a setTimeout problem similar to this one . But that solution doesn't
I'm not good at JS and I'm having some -I hope- stupid problem I'm
I'm having a problem pushing a UITableViewController onto a NavigationController. With the following code:
I'm having difficulty testing some logic that uses notifications. I've read about enforcing that

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.