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

  • Home
  • SEARCH
  • 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 7766799
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T15:30:49+00:00 2026-06-01T15:30:49+00:00

I want to implement a java.util.Comparator with Long : new Comparator<Long>() { public int

  • 0

I want to implement a java.util.Comparator with Long:

new Comparator<Long>() {
    public int compare(Long l1, Long l2) {
        // (*)
    }
}

I have a solution with operator ?::

return l1==l2 ? 0 : (l1>l2 ? 1 : -1);

But I wonder if there is any other way to implement it.

(I was trying return (int)(l1-l2), but it’s incorrect).

  • 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-01T15:30:51+00:00Added an answer on June 1, 2026 at 3:30 pm

    That’s easy – Long itself provides an implementation:

    public int compare(Long l1, Long l2) {
        return l1.compareTo(l2);   
    }
    

    On the other hand, at that point I’m not sure why you’ve got a custom comparator at all…

    EDIT: If you’re actually comparing long values and you’re using Java 1.7, you can use Long.compare(long, long). Otherwise, go with your current implementation.

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

Sidebar

Related Questions

I want to implement something with jquery, simple javascript and java but I don't
I want implement in my software solution an VBA editor but in c# 3.0.
I have realized some logic using integers import java.util.concurrent.locks.*; public class MassageSalon implements Salon{
I want to implement a thread-safe function to remove the time part from java.util.Date.
I want to implement a method in java that could be used to categorize
Hi I am trying to implement the java logging in my application. I want
I am a C# programmer. I want to learn Java to implement my windows
How would you implement a capacity-limited, generic MruList in C# or Java? I want
given this class definition: public class Frame { IFrameStream CapturedFrom; } I want implement
I want to implement HTTP Basic Authentication for my web services, but I also

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.