当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Integer longValue()用法及代码示例


longValue()方法是java.lang包下Long类的实例方法。此方法返回指定 long 对象的值作为 long 等效项。 longValue() 方法继承自 Number 类。

用法:

以下是 longValue() 方法的声明:

public int longValue()

参数:

数据类型 参数 描述
NA NA 此方法不接受任何参数。

返回值:

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

异常:

NA

兼容版本:

Java 1.2 及以上

例子1

public class IntegerLongValuetExample1 {
	public static void main(String[] args) {	
	    long x = 6666;
	    long y = 55;
	    Long i = new Long(x);
	    Long result = i.longValue()/y;
	    System.out.println("Value is = "+result);		
        }
}

输出:

Value is = 121

例子2

import java.util.Scanner;
public class IntegerLongValuetExample2 {
	public static void main(String[] args) {	
		// input number from console
		System.out.print("Enter The Desired Integer Value:");
		Scanner readInput = new Scanner(System.in);
		int i = readInput.nextInt();
		readInput.close();
		Integer myValue = new Integer(i);
		System.out.println("Long Value is:" + myValue.longValue());	
        }
}

输出:

Enter The Desired Integer Value:58648
Long Value is:58648

例子3

public class IntegerLongValuetExample3 {
	public static void main(String[] args) {	
	      Long object1 = new Long(298689);	 
	      // returns the value of this Long object as a long
	      long l1 = object1.longValue();
	      System.out.println("Value of l1 as long is:" + l1);
	      
	      Long object2 = new Long(-98723886);
	      
	      // It will return the value of this Long as a long
	      long l2 = object2.longValue();
	      System.out.println("The Value of l2 as long is:" + l2);
        }
}

输出:

Value of l1 as long is:298689
The Value of l2 as long is:-98723886






相关用法


注:本文由纯净天空筛选整理自 Java Integer longValue() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。