java.lang.Integer.floatValue()方法範例


java.lang.Integer.floatValue() 方法返回這個整數作為一個float的值。

宣告

以下是java.lang.Integer.floatValue()方法的宣告

public float floatValue()

引數

  • NA

返回值

此方法返回該物件轉換後表示為float型別的數值。

異常

  • NA

例子

下面的例子顯示java.lang.Integer.floatValue()方法的使用。

package com.yiibai;

import java.lang.*;

public class IntegerDemo {

   public static void main(String[] args) {

     Integer obj = new Integer(35);
 
     // returns the value of this Integer as a float
     float f = obj.floatValue();
     System.out.println("Value of f = " + f);
   }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

Value of f = 35.0