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

The Archive Base Latest Questions

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

Possible Duplicate: WHY an Anonymous class in Java can't implement multiple interfaces directly? Simply

  • 0

Possible Duplicate:
WHY an Anonymous class in Java can't implement multiple interfaces directly? Simply because of syntax or there is another reason?

Hi all I was wondering why is it that Java anonymous classes couldn’t implement more than one interface?

Like what problems will we have if the Java designers allowed anonymous classes to implement more than one interface?

As such:

IMammal, I4legged anonymous_creature = new IMammal, I4legged() {
    {
        //..
    }
};
anonymous_creature.FourLeggedStuff();
anonymous_creature.MammalStuff();
  • 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-27T00:23:49+00:00Added an answer on May 27, 2026 at 12:23 am

    Like what problems will we have if the Java designers allowed anonymous classes to implement more than one interface?

    In Javas type-system there is precisely one static type for each expression. If you had to choose one static type for anonymous_creature you wouldn’t be able to make much use of the variable, which is probably why you wrote

    IMammal, I4legged anonymous_creature =
    ^^^^^^^^^^^^^^^^^
    

    which actually changes Javas type-system fundamentally. (Possibly it has been excluded for the same reason as multiple inheritance, namely in order to keep the language simple.)

    Besides, there is a trivial workaround, and that is to introduce a auxiliary interface extending both of them:

    interface FourLeggedMammal extends IMammal, I4Legged {
    }
    

    and then do

    ... new FourLeggedMammal() { ... }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Explain JavaScript's encapsulated anonymous function syntax I have just read a javascript
Possible Duplicate: Is there a downside to adding an anonymous empty delegate on event
Possible Duplicate: C# Why can't an anonymous method be assigned to var? I have
Possible Duplicate: LINQ to SQL: Return anonymous type? This is my code: class B
Possible Duplicate: LINQ to SQL: Return anonymous type? I have a standard LINQ to
Possible Duplicate: JavaScript: Why the anonymous function wrapper? I would like to ask you
Possible Duplicate: .NET - What’s the best way to implement a catch all exceptions
Possible Duplicate: How do you send email from a Java app using Gmail? How
Possible Duplicate: JavaScript: Why the anonymous function wrapper? Sometimes I see a structure like
Possible Duplicate: What is the meaning of prepended double colon “::” to class name?

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.