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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T20:29:44+00:00 2026-06-06T20:29:44+00:00

Lets say I have two interfaces interface A and interface B: public interface A

  • 0

Lets say I have two interfaces interface A and interface B:

public interface A {
  public int data();
}

public interface B {
  public char data();
}

interface A has a method public int data() and interface B has a method public char data().

when I implement both interfaces A and B in some class C the compiler gives me an error. Is this a flaw in java? As I presume this is one of the major reasons why we are not allowed to extend more than one class then why are we allowed to implement more than one interface when this problem still persists?

  • 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-06T20:29:45+00:00Added an answer on June 6, 2026 at 8:29 pm

    The Java Tutorials: Defining Methods – Overloading Methods states,

    The Java programming language supports overloading methods, and Java
    can distinguish between methods with different method signatures. This
    means that methods within a class can have the same name if they have
    different parameter lists.

    also,

    You cannot declare more than one method with the same name and the
    same number and type of arguments, because the compiler cannot tell
    them apart.

    The compiler does not consider return type when differentiating
    methods, so you cannot declare two methods with the same signature
    even if they have a different return type.

    The two implemented methods share a common method signature (i.e. data()) and as such, the compiler cannot differentiate between the two and will have that single method satisfy both interface contracts.


    Edit:

    For instance,

    public class Foo implements IFoo, IBar{
    
        public static void main(String[] args) {
            Foo foo = new Foo();
            ((IFoo) foo).print();
            ((IBar) foo).print();
        }
    
        @Override
        public void print() {
            System.out.println("Hello, World!");
        }
    }
    
    public interface IBar {
        void print();
    }
    
    public interface IFoo {
        void print();
    }
    

    which will output,

    Hello, World! 
    Hello, World!
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

lets say I have two methods in my controller to support both json and
Lets say I have two tables tblA ( tableAID INT IDENTITY(1,1), foo VARCHAR(100)) tblB
I have an Interface lets say ISendOut which I've inherited two different classes from
Say I have two interfaces, IFeaturesA, IFeaturesB. IFeaturesA has a set of signature methods.
Lets say I have the following: public interface IFoo { void Foo(); } public
Lets say I have two tables - Cat and Cat owner that are linked
Lets say we have two objects o1 & o2 defined as System.Object, in my
lets say I have two matrices, of a different size: a = zeros(1,100); b
Lets say a have two sites. Site A and site B. On site A
Lets say i have two classes A and B, which have theirs internal state

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.