java.lang.Number.byteValue() 方法返回指定數的位元組值。這可能會涉及到舍入或截斷。
以下是java.lang.Number.byteValue()方法的宣告
public byte byteValue()
NA
此方法返回轉換後該物件表示輸入位元組byte的數值。
NA
下面的例子顯示lang.Number.byteValue()方法的使用。
package com.yiibai; public class NumberDemo { public static void main(String[] args) { // get a number as integer Integer x = new Integer(123456); // get a number as float Float y = new Float(9876f); // print their value as byte System.out.println("x as integer:" + x + ", x as byte:" + x.byteValue()); System.out.println("y as float:" + y + ", y as byte:" + y.byteValue()); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
x as integer:123456, x as byte:64 y as float:9876.0, y as byte:-108