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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T08:30:45+00:00 2026-05-18T08:30:45+00:00

I noticed that if I use generics on a method signature to accomplish something

  • 0

I noticed that if I use generics on a method signature to accomplish something similar to co-variant return types, it works like I think it would, except it generates a warning:

interface Car {
    <T extends Car> T getCar();
}

class MazdaRX8 implements Car {
    public MazdaRX8 getCar() { // "Unchecked overriding" warning
        return this;
    }
}

With the code above, my IDE gives the warning: "Unchecked overriding: return type requires unchecked conversion. Found: ‘MazdaRX8’, required ‘T’"

What does this warning mean?

 

It makes little sense to me, and Google didn’t bring up anything useful. Why doesn’t this serve as a warning-free replacement for the following interface (which is also warning free, as co-variant return types are allowed by Java)?

interface Car {
    Car getCar();
}
  • 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-18T08:30:46+00:00Added an answer on May 18, 2026 at 8:30 am

    You’ve made the method generic, so the caller gets to say what type should be returned (because the caller can specify the type argument). That’s a pretty hard interface to implement properly in Java, where you don’t get to find out the type argument at execution time.

    For example, consider this:

    Car mazda = new MazdaRX8();        
    FordGalaxy galaxy = mazda.<FordGalaxy>getCar();
    

    That’s perfectly legal as far as the interface is concerned… but it’s obviously not going to work.

    Any reason why the interface isn’t generic instead of the method? Then MazdaRX8 would implement Car<MazdaRX8>:

    interface Car<T extends Car> {
        T getCar();
    }
    
    class MazdaRX8 implements Car<MazdaRX8 > {
        public MazdaRX8 getCar() {
            return this;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I noticed that this recipe seems to use __rlshift__ , __ror__ like operators. But,
I have a few forms that use tiny mce. I have noticed recently that
I'm playing around with Lucene and noticed that the use of a hyphen (e.g.
I noticed that various systems use various characters as the replacent for illegal ones
I noticed that I rarely use properties, due to the fact that I rarely
I've noticed that if I use the text-to-columns feature with comma as the delimiter,
I noticed that most scripts for e-mail validation do not use DNS information to
I have noticed that most Objective-C coders never use the self->ivar syntax when accessing
I have noticed that sometimes people have to use multiple versions of jQuery in
While reading cocoa tutorials i've noticed that some of the tutorials use AppDelegate and

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.