Java Integer longValue()方法

java.lang.Integer.longValue() 方法返回这个整数Integer 作为long值。

1 语法

public long longValue()

2 参数

3 返回值

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

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Integer longValue()方法
 */
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

 

热门文章

优秀文章