當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.Number.floatValue()用法及代碼示例



描述

這個java.lang.Number.floatValue()方法以浮點數形式返回指定數字的值。這可能涉及舍入或截斷。

聲明

以下是聲明java.lang.Number.floatValue()方法

public abstract float floatValue()

參數

NA

返回值

此方法返回轉換為 float 類型後此對象表示的數值。

異常

NA

示例

下麵的例子展示了 lang.Number.floatValue() 方法的用法。

package com.tutorialspoint;

public class NumberDemo {

   public static void main(String[] args) {

      // get a number as integer
      Integer x = new Integer(123456);

      // get a number as double
      Double y = new Double(9876);

      // print their value as float
      System.out.println("x as integer:" + x
         + ", x as float:" + x.floatValue());
      System.out.println("y as double:" + y
         + ", y as float:" + y.floatValue());
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

x as integer:123456, x as float:123456.0
y as double:9876.0, y as float:9876.0

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Number.floatValue() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。