java.lang.Integer.longValue()方法实例
java.lang.Integer.longValue() 方法返回这个整数Integer 作为long值。
声明
以下是java.lang.Integer.longValue()方法的声明
public long longValue()
参数
-
NA
返回值
此方法返回该对象表示转换为long类型后的数值。
异常
-
NA
例子
下面的例子显示java.lang.Integer.longValue()方法的使用。
package com.yiibai; import java.lang.*; public class IntegerDemo { public static void main(String[] args) { Integer obj = new Integer(95545); // returns the value of this Integer as a long long l = obj.longValue(); System.out.println("Value of l = " + l); } }
让我们来编译和运行上面的程序,这将产生以下结果:
Value of l = 95545