Java.lang.Long.longValue() Method


Description

The java.lang.Long.longValue() method returns the value of this Long as a long.

Declaration

Following is the declaration for java.lang.Long.longValue() method

public long longValue()

Parameters

NA

Return Value

This method returns the numeric value represented by this object after conversion to type long.

Exception

NA

Example

The following example shows the usage of java.lang.Long.longValue() method.

package com.tutorialspoint;

import java.lang.*;

public class LongDemo {

   public static void main(String[] args) {

      Long obj = new Long(77906);
 
      // returns the value of this Long as a long
      long l = obj.longValue();
      System.out.println("Value of l = " + l);
   }
}  

Let us compile and run the above program, this will produce the following result −

Value of l = 77906
java_lang_long.htm
Advertisements