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


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


Integer类longValue()方法

  • longValue() 方法可在java.lang包。
  • longValue() 方法用于返回此 Integer 对象表示的值转换为 long 类型(通过强制转换)。
  • longValue() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • longValue() 方法在从 Integer 转换为 long 时不会抛出异常。

用法:

    public long longValue();

参数:

  • 它不接受任何参数。

返回值:

这个方法的返回类型是long,它返回由此 Integer 对象表示的转换后的(从 double 类型到 long 类型)值。

例:

// Java program to demonstrate the example 
// of longValue() method of Integer class

public class LongValueOfIntegerClass {
    public static void main(String[] args) {
        // Variables initialization
        int i1 = 20;
        int i2 = 30;

        // It returns integer value denoted by this Integer ob1 object
        // and converted to a long by calling ob1.longValue()
        Integer ob1 = new Integer(i1);

        // Display ob1 result
        System.out.println("ob1.longValue():" + ob1.longValue());

        // It returns integer value denoted by this Integer ob2 object
        // and converted to a long by calling ob2.longValue()
        Integer ob2 = new Integer(i2);

        // Display ob2 result
        System.out.println("ob2.longValue():" + ob2.longValue());
    }
}

输出

ob1.longValue():20
ob2.longValue():30


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Integer class longValue() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。