Java Integer floatValue()方法具有什么功能呢?
下文笔者将讲述 java.lang.Integer floatValue()方法的功能简介说明,如下所示:
将Integer对象中的值对应的float值
java.lang.Integer floatValue()的功能
java.lang.Integer.floatValue()的功能:将Integer对象中的值对应的float值
java.lang.Integer.floatValue()的语法
语法 public float floatValue() 参数 无 返回值 返回对象对应的float值例:
package com.java.other; import org.junit.Test; public class other { /** * java265.com Integer类的示例分享 * * @throws Exception */ @Test public void test() throws Exception { Integer i = 90; Integer j = 110; System.out.println(i.floatValue()); System.out.println(j.floatValue()); } } ---------运行以上代码,将输出以下信息------ 90.0 110.0
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。