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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T20:27:45+00:00 2026-05-20T20:27:45+00:00

In the real world what do people use this for (to solve what types

  • 0

In the real world what do people use this for (to solve what types of problems)? Can I see some example code of these working together? All I can find is code about cats and dogs speaking or people drinking milk or coffee…

Do people really implement polymorphism with interfaces? What for?

  • 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-20T20:27:45+00:00Added an answer on May 20, 2026 at 8:27 pm

    Sure,

    Below is concrete example of the “Observer” pattern, using classes and interfaces to accomplish polymorphic behavior in a logger system:

    interface ILogger{
    
       public void handleEvent (String event);
    }
    
    class FileLogger implements ILogger{
    
       public void handleEvent (String event){
           //write to file
       }
    }
    
    class ConsoleLogger implements ILogger{
    
       public void handleEvent (String event){
           System.out.println( event );
       }
    }
    
    class Log {
    
       public void registerLogger (ILogger logger){
    
           listeners.add(logger);
       }
    
       public void log (String event){
    
           foreach (ILogger logger in listeners){
    
                logger.handleEvent(event); //pass the log string to both ConsoleLogger and FileLogger!
           }
       }
    
       private ArrayList<ILogger> listeners;
    }
    

    Then, you could use it as follows:

    public static void main(String [] args){
    
         Log myLog();
         FileLogger myFile();
         ConsoleLogger myConsole();
    
         myLog.registerLogger( myFile );    
         myLog.registerLogger( myConsole );
    
        myLog.log("Hello World!!");
        myLog.log("Second log event!");
    }
    

    Hope this helps your understanding of interfaces and polymorphism.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

see also Is Code Access Security of any real world use? I want to
Do bubble sorts have any real world use? Every time I see one mentioned,
What are real-world problems where a recursive approach is the natural solution besides depth-first
Can anyone give a concise set of real-world considerations that would drive the choice
I just recently started diving into Real World Haskell and the book provides some
Say I have a bunch of data on some people. This could include Name,
I've heard that the advantage of java is that people can write code, compile
I would like to hear from people who have real world programming experience in
Which dependently typed programming languages could be used for real world application development? These
What's the penetration of design patterns in the real world? Do you use them

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.