Java Float to Bit floatToIntBits(float value)

Here you can find the source of floatToIntBits(float value)

Description

float To Int Bits

License

Open Source License

Declaration

public static int floatToIntBits(float value) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static int floatToIntBits(float value) {
        return Float.floatToIntBits(value);
    }//from ww w  .  jav  a  2  s. co m
}

Related

  1. floatToIntBits(final float f)
  2. floatToIntBits(float value)
  3. floatToShortBits(float fval)