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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T02:27:36+00:00 2026-05-28T02:27:36+00:00

Is there a potential for overflow if I were to write the following: public

  • 0

Is there a potential for overflow if I were to write the following:

 public class SomeObj implements Comparable<SomeObj> {

    private final float data;

    public SomeObj(float data) {
       this.data = data;
    }

    public int compareTo(SomeObj object) {
       return (int) (this.data - object.data);
    }

 }

I’ve seen other Java developers write their compareTo methods like how I did above as a shortcut instead of writing a bunch of if-else statements. Would the latter be the best approach to implementing the compareTo method here if there really is a potential for overflow?

  • 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-28T02:27:37+00:00Added an answer on May 28, 2026 at 2:27 am

    You should definitely not write compareTo methods like this:

    • It will fail if you have this.data = 0.5f and object.data = 0.2f for example – presumably that should return a positive value, but it will return 0
    • It could overflow the range of int (I can’t even remember what Java does in that case, offhand – casting in such a situation is almost always the wrong approach, so I don’t usually need to remember)
    • For similar situations with int, you can end up subtracting a positive number from a negative number and getting a large positive number due to overflow

    I’m sure I could think of other nasty situations with enough effort.

    Fortunately, the fix is easy:

    return Float.compare(this.data, object.data);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Are there any potential pitfalls to using $this->{$name} instead of $this->some_array[$name] in my class
My colleague wrote the following stackoverflow question: other stack overflow question on this topic
Given the following code. Is there any potential for the first DrawString method to
Are there any potential memory issues with the following code?: - (void)viewDidLoad { locationManager
Is there a potential pitfall in using jquery on/off method and trigger to execute
I'm working on a web service at the moment and there is the potential
Given a list of potential ID's is there a quick way using a single
There is a column that exists in 2 tables. In table 1, this column
Are there any potential drawbacks to using DotNetNuke 5.4 with ASP.NET 4.0 vs. ASP.NET
Is there any potential gotchas with having both spring mvc and jersey framework in

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.