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


Java Number.byteValue()用法及代碼示例


java.lang.Number.byteValue()是java中的內置方法,它以字節為單位返回指定數字的值。這可能涉及舍入或截斷。

用法:

public byte byteValue()

參數:該方法不帶任何參數。


返回值:轉換為字節類型後,此方法返回此對象表示的數值。

以下示例程序旨在說明Number.byteValue()方法的使用:

示例1:

// Java program to illustrate the 
// Number.byteValue() method 
public class gfg { 
  
    public static void main(String[] args) 
    { 
  
        // Get a number as integer 
        Integer x = new Integer(12345786); 
  
        // Print bytevalue() 
        System.out.println(x.byteValue()); 
  
        // Get a number as float 
        Float y = new Float(9145876f); 
  
        // Print bytevalue() 
        System.out.println(y.byteValue()); 
    } 
}
輸出:
-70
20

示例2:

// Java program to illustrate the 
// Number.byteValue() method 
public class gfg { 
  
    public static void main(String[] args) 
    { 
  
        // Get a number as integer 
        Integer x = new Integer(123); 
  
        // Print  bytevalue() 
        System.out.println(x.byteValue()); 
  
        // Get a number as float 
        Float y = new Float(76f); 
  
        // Print  bytevalue() 
        System.out.println(y.byteValue()); 
    } 
}
輸出:
123
76


相關用法


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