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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。