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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T17:01:38+00:00 2026-06-04T17:01:38+00:00

I have this provided function that I want to use: boolean check(Comparable<Object> obj1, Comparable<Object>

  • 0

I have this provided function that I want to use:

boolean check(Comparable<Object> obj1, Comparable<Object> obj2) {
   // do something
}

and I have:

Object obj1,obj2;

that I want to send to method check, how can I cast or convert the two Objects to Comparables ?

I wish I was clear, thank you.

  • 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-04T17:01:40+00:00Added an answer on June 4, 2026 at 5:01 pm

    Well, if your two object references are truly pointing to Comparable objects, you could simply do

    check((Comparable<Object>) obj1, (Comparable<Object>) obj2);
    

    -EDIT-

    Of course this generates a warning, you are basically telling the compiler that you know better. The compiler is warning you that there is chance you could be wrong if obj is not truly what you said it was in terms of its generic type parameter. You can tell your compiler to shut up, that you are really, really sure, using an annotation:

    @SuppressWarnings("unchecked")
    Comparable<Object> cmp1 = (Comparable<Object>) obj;
    @SuppressWarnings("unchecked")
    Comparable<Object> cmp2 = (Comparable<Object>) obj;     
    check(cmp1,cmp2);
    

    When you use a @SupressWarning annotation you typically add a comment indicating why you are so positively sure that the unsafe cast will always succeed.

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

Sidebar

Related Questions

I want to be able to understand the standard function description that is provided
I have looked through all the answers provided on this website for an answer
I have this swf (flash) file that provides the json that needs to be
I have a array that looks like this Array ( [provider] => Array (
I'm writing some C++ code that will have to send data over TCP/IP. I
I have a CMS system that allows people to also use HTML code, but
I have an object oriented framework that uses a page design, where each page
In a CMS I'm building I want to have my own javascript namespaced object
I have a number of queries (in a C# project) that all use the
It's likely that I'm just confused and wouldn't want to do this if I

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.