位置:首页 > Java技术 > java.lang > java.lang.Number.longValue()方法实例

java.lang.Number.longValue()方法实例

java.lang.Number.longValue() 方法返回指定数字作为long的值。这可能会涉及到舍入或截断。

声明

以下是java.lang.Number.longValue()方法的声明

public abstract long longValue()

参数

  • NA

返回值

此方法返回该对象表示转换为long类型后的数值。

异常

  • NA

例子

下面的例子显示lang.Number.longValue()方法的使用。

package com.yiibai;

public class NumberDemo {

   public static void main(String[] args) {

      // get a number as float
      Float x = new Float(123456f);

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

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

   }
}

让我们来编译和运行上面的程序,这将产生以下结果:

x as float:123456.0, x as long:123456
y as double:9876.0, y as long:9876