Android Float Round FloatToInt(float f)

Here you can find the source of FloatToInt(float f)

Description

Float To Int

Declaration

public static int FloatToInt(float f) 

Method Source Code

//package com.java2s;

public class Main {
    public static int FloatToInt(float f) {
        return Float.floatToIntBits(f);
    }/* w w  w .ja va  2 s .  c o m*/
}

Related

  1. getIntWithRound(float f)
  2. getFloatWithADecimal(float f)
  3. round(float d, int decimalPlace)