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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T14:35:51+00:00 2026-06-15T14:35:51+00:00

Java doesn’t support multiple inheritance because if two classes have same function name but

  • 0

Java doesn’t support multiple inheritance because if two classes have same function name but different implementation and if a third class inherits these two classes and if it wants to use the method, then it will create a confusion on which method should be called. So java uses multiple interfaces concept. But my doubt is if two multiple interfaces also have the same function name but different implementation and if a third class implements these two interfaces and when it provides implementation to that method then is it not a problem, please explain?

  • 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-15T14:35:52+00:00Added an answer on June 15, 2026 at 2:35 pm

    A clash between two interfaces occurs when two methods have the same parameters but a different return type.

    Example:

    public class MultipleInterfaceClash {
    
        public interface Foo {
            String baz(int a, String x);
        }
    
        public interface Bar {
            Double baz(int a, String x);
        }
    
        public class Confused implements Foo, Bar {
    
            // Compile error: The return type is incompatible with
            // MultipleInterfaceClash.Foo.baz(int, String)
            public Double baz(int a, String x) {
                return null;
            }
    
        }
    }
    

    It is not possible to implement both these interfaces.

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

Sidebar

Related Questions

Java doesn't support multiple inheritance for abstract classes, but I'm trying to do the
I am aware that Java doesn't support multiple inheritance. But if I have to
Java doesn't allow multiple inheritance, but it allows implementing multiple interfaces. Why?
I know that java doesn't support multiple inheritance. So how can i fulfill following
This doesn't have to be Java, but it's what I'm dealing with. Also, not
Possible Duplicates: Why does Java allow multiple inheritance from interfaces but not from abstract/concrete
I have two resource classes Pc.java - @Path(/pc) Tag.java - @Path(/{entity:(pc|networks)?}/{id}/tags) So the second
I could understood that Desktop applications in Java doesn't have a pre-defined relative path
But it doesn't work -meaning the java code is not executed. Although the batch
It doesn't seem to be working right now. I get a java.lang.NullPointerException I have

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.