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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T00:23:01+00:00 2026-05-21T00:23:01+00:00

Hey guys im stuck on a problem. Say I have an interface Animal. I

  • 0

Hey guys im stuck on a problem.
Say I have an interface Animal. I then have classes that implement it such as Dog, Cat, Goat. say each of these classes has an update() function that they get from the interface.

I have an arraylist of Animal,that includes all different kinds of the animal classes (dog, cat, goat). If i was given a string that says “Goat” how would i search that arraylist and choose only the Goat update() function, ignoring Dog and Cat…

  • 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-21T00:23:01+00:00Added an answer on May 21, 2026 at 12:23 am
    for ( Animal a : animals ) {
        if ( a instanceof Goat ) {
           a.update();
        }
    }
    

    If you really only have the String “Goat” to go on you could do something like this:

    if ( a.getClass().getName().endsWith("Goat") ) {
        //...
    

    Or if the String has nothing to do with the name of the class, you could map a String to an instance of Class:

    Map<String, Class<? extends Animal>> map = new HashMap...
    map.put("Goat", Goat.class);
    
    //...
    if ( map.get("Goat").isInstance(a) ) {
       a.update();
    }
    

    In my opinion Google’s Guava is the best choice:

     for ( Goat g : Iterables.filter(animals, Goat.class) ) {
        g.update();
     }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hey guys I have a quick question, I have a dialog box that has
Hey guys, I have the following HTML structure that I am trying to pull
hey guys I have a problem adding text inside an added html-tag I have
Hey guys I have my script here that is supposed to do some stuff
Hey guys - I'm stuck with this problem and im just wondering what the
hey there guys and girls i have this code that should download a json
Hey guys, I'm having a problem with IE7, my menu always drops down behind
Hey guys, given a data set in plain text such as the following: ==Events==
hey guys how to make these php html links codes possible. i have tried
Hey guys, I'm working on a program for a university course that uses a

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.