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


Java Byte longValue()用法及代碼示例


Byte類的longValue()方法是Java中的內置方法,用於長時間返回此Byte對象的值。

用法

ByteObject.longValue()

返回值:它返回ByteObject的值,隻要long。


下麵是Java中longValue()方法的實現:

示例1:

// Java code to demonstrate 
// Byte longValue() method 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        // byte value 
        byte a = 17; 
  
        // wrapping the byte value 
        // in the wrapper class Byte 
        Byte b = new Byte(a); 
  
        // longValue of the Byte Object 
        long output = b.longValue(); 
  
        // printing the output 
        System.out.println("Long value of "
                           + b + " is : " + output); 
    } 
}
輸出:
Long value of 17 is : 17

示例2:

// Java code to demonstrate 
// Byte longValue() method 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        String value = "17"; 
  
        // wrapping the byte value 
        // in the wrapper class Byte 
        Byte b = new Byte(value); 
  
        // longValue of the Byte Object 
        long output = b.longValue(); 
  
        // printing the output 
        System.out.println("Long value of "
                           + b + " is : " + output); 
    } 
}
輸出:
Long value of 17 is : 17


相關用法


注:本文由純淨天空篩選整理自ShivamKD大神的英文原創作品 Byte longValue() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。