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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:52:46+00:00 2026-05-25T18:52:46+00:00

This question is probably unusual, but I need to cast a float Number to

  • 0

This question is probably “unusual”, but I need to cast a float Number to an integer Number, without modifying its binary representation.

For example, the float 37.5 is represented by the bytes 0x42160000 (according to IEEE 754).
I need to reinterpret 0x42160000 as an integer, i.e. the number 1108738048

How do I do this? I’m thinking there could be some bitwise tricks to accomplish this?

To be clear, I’m not looking for Math.round or parseInt.

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

    Typed arrays can come in handy here: http://jsfiddle.net/rtYrM/.

    // create array which is specialized for holding 1 float value
    var floatArray = new Float32Array(1);
    
    // set the float value
    floatArray[0] = 37.5;
    
    // use its buffer (4 bytes for 1 float) and pass it to an array
    // specialized for integers
    var intArray = new Int32Array(floatArray.buffer);
    
    // the integer array will interpret the buffer bytes as an integer,
    // which seems to be just what you want
    intArray[0] === 1108738048; //true
    

    intArray.buffer will hold the same bytes as floatArray.buffer, but by not accessing it with the buffer but with the array itself, it will read those bytes as the type specified by the typed array: as integers for Int32Array, and as floats for Float32Array.

    In this case (in base 10):

    • floatArray is set to the value [ 37.5 ].
    • floatArray.buffer is automatically set to the values [ 0, 0, 22, 66 ].
    • floatArray.buffer is passed to a new integer array, intArray.
    • intArray.buffer therefore contains the values [ 0, 0, 22, 66 ] as well.
    • intArray contains the value [ 1108738048 ], calculated with its buffer.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Ok, so this question will probably get closed, but hell, its 4:30 in the
I know this question is probably stoopid. But I just don't want to cause
This question probably reveals my total lack of knowledge in Java. But let me
This question is probably easy to solve, but here it comes. I would like
This question will probably take a while to explain, and I'll need to provide
The answer to this question will probably give me a doh! moment, but where
I half realize that this question is probably asked already, but I'm not familiar
All, This question probably has a very simple answer - something I'm overlooking. But
This question is probably already answered here, but I couldn't find the answer? Is
This question is probably attributed to my blindness, but I failed to find a

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.