Java Float intValue()方法

java.lang.Float.intValue() 方法(通过转换成int类型)返回当前Float对象对应的整型值。

1 语法

public int intValue()

2 参数

3 返回值

此方法返回当前对象表示的float值转换为int类型。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Float intValue()方法
 */
import java.lang.*;

public class FloatDemo {

   public static void main(String[] args) {

     /* returns the float value represented by this object
     converted to type int */
     Float obj = new Float("22.10");
     int i = obj.intValue();
     System.out.println("Value = " + i);
    
     obj = new Float("5.0");
     i = obj.intValue();
     System.out.println("Value = " + i);
   }
}

输出结果为:

Value = 22
Value = 5

 

热门文章

优秀文章