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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T12:38:25+00:00 2026-05-31T12:38:25+00:00

In the following code snippets, first one does not compile, but second one does

  • 0

In the following code snippets, first one does not compile, but second one does . Why? What is the difference?

1.

public class test {
    static interface I1 { I1 m(); }

    static interface I2 { I2 m(); }

    static interface I12 extends I1,I2 { 
    public I12 m();
    }



}

2.

public class test {
    static interface I1 { I1 m(); }

    static interface I2 { I2 m(); }

    static class I12 implements I1,I2 { 
           public I12 m(){
                return null;
           }
    }
}
  • 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-31T12:38:27+00:00Added an answer on May 31, 2026 at 12:38 pm

    In Java 1.4 or earlier, both snippets should fail to compile. In 1.5 or later, both versions should compile.

    If you override a method in Java 1.4, you must provide exactly the same return type as the base class method does.

    This restriction was lifted in Java 1.5 and later, here you are allowed to provide a return type that inherits from the base class method’s return type.

    This makes sense, and can be useful. If you have:

    I1 x = new I12Impl();
    

    then all you know is x.m() returns an I1.

    But if you have a bit more information:

    I12 x = new I12Impl();
    

    then you know that x.m() returns an I12 (which is also an I1).

    This can be handy at times (for example, you might be able to avoid a downcast when calling x.m())

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

Sidebar

Related Questions

For the following code snippets why would I use one assignment vs another? thx
What is the difference between the following two snippets of code: using (Object o
I had ever used the following code snippet in one class. Today, I copied
Consider the following sample code: class MyClass { public long x; public void DoWork()
I have the following models & mappings (code snippets further below). One Competition has
I have the following code snippet in one of my COBOL program. IF FIRST
I have the following code package myPackage; import org.neo4j.graphdb; import org.neo4j.kernel.EmbeddedGraphDatabase; public class dbServlet
Which of the following code snippets is the most pythonic? The calculation is trivial
The following two different code snippets seem equivalent to me: var myArray = Array();
I am trying to post some java code snippets on wordpress.com using the following

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.