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


Java Integer byteValue()用法及代碼示例


java.lang包的Integer類的byteValue()方法在縮小原始轉換後,將給定的Integer轉換為字節,並返回它。

用法:

public byte byteValue()

返回:
This method returns the numeric value represented by this object after
 conversion to byte type.

例:展示java.lang.Integer.byteValue()方法的用法。


// Java program to demonstrate working 
// of java.lang.Integer.byteValue() method 
import java.lang.Integer; 
  
class Gfg { 
    // driver code 
    public static void main(String args[]) 
    { 
        Integer a = new Integer(34); 
  
        // Convert Integer number to byte value 
        byte b = a.byteValue(); 
  
        System.out.println(b); 
    } 
}

輸出:

34


相關用法


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