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 lowestOneBit()用法及代碼示例
- Java Integer doubleValue()用法及代碼示例
- Java Integer max()用法及代碼示例
- Java Integer intValue()用法及代碼示例
- Java Integer floatValue()用法及代碼示例
- Java Integer toUnsignedLong()用法及代碼示例
- Java Integer parseUnsignedInt()用法及代碼示例
- Java Integer reverseBytes()用法及代碼示例
- Java Integer numberOfLeadingZeros()用法及代碼示例
- Java Integer shortValue()用法及代碼示例
- Java Integer compare()用法及代碼示例
- Java Integer byteValue()用法及代碼示例
- Java Integer min()用法及代碼示例
- Java Integer getInteger()用法及代碼示例
- Java Integer reverseBytes(int i)用法及代碼示例
- Java Integer toUnsignedString()用法及代碼示例
- Java Integer compareTo()用法及代碼示例
- Java Integer numberOfTrailingZeros()用法及代碼示例
- Java Integer remainderUnsigned()用法及代碼示例
- Java Integer decode()用法及代碼示例
注:本文由純淨天空篩選整理自 Java Integer longValue() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。