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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T18:32:59+00:00 2026-05-16T18:32:59+00:00

Inside of Java’s ByteBuffer is the method compareTo for implementing Comparable<ByteBuffer>… public int compareTo(ByteBuffer

  • 0

Inside of Java’s ByteBuffer is the method compareTo for implementing Comparable<ByteBuffer>…

public int compareTo(ByteBuffer that) {
    int n = this.position() + Math.min(this.remaining(), that.remaining());
    for (int i = this.position(), j = that.position(); i < n; i++, j++) {
        byte v1 = this.get(i);
        byte v2 = that.get(j);
        if (v1 == v2)
            continue;
        if ((v1 != v1) && (v2 != v2)) // For float and double
            continue;
        if (v1 < v2)
            return -1;
        return +1;
    }
    return this.remaining() - that.remaining();
}

What is the point of if ((v1 != v1) && (v2 != v2)) // For float and double?

If I write this kind of code, I’m warned about comparing identical expressions.

  • 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-16T18:33:00+00:00Added an answer on May 16, 2026 at 6:33 pm

    Double.NaN == Double.NaN and Float.NaN == Float.NaN gives false.

    See also end of JLS 4.2.3:

    The equality operator == returns false if either operand is NaN, and the inequality operator != returns true if either operand is NaN (§15.21.1).

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

Sidebar

Related Questions

Can I write my own custom static method in JAVA inside map-reduce that I
I have a jsp page which needs a java code. This java code inside
I'm looking at writing monitoring code that runs inside a Java application and periodically
I have this coding inside my java file . This code basically receives an
I'm trying to run a bash script from inside java that will live on
I want to write a program to dynamically invoke a method inside another Java
This is called GoHomeAction.java import javax.swing.*; import java.awt.Image; import java.awt.event.ActionEvent; import static java.awt.event.KeyEvent.VK_H; public
I want to set show_sql hibernate parameter inside java code in hibernate method, so
Is there is a way to reuse public static final constants defined inside Java
I'm trying to call a Javascript function from inside a Java Signed Applet that

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.