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