java.lang.Integer.byteValue()方法範例


java.lang.Integer.byteValue() 方法返回這個整數作為一個位元組的值。

宣告

以下是java.lang.Integer.byteValue()方法的宣告

public byte byteValue()

引數

  • NA

返回值

此方法返回轉換後該物件表示輸入位元組的數值。

異常

  • NA

例子

下面的例子顯示java.lang.Integer.byteValue()方法的使用。

package com.yiibai;

import java.lang.*;

public class IntegerDemo {

   public static void main(String[] args) {

     Integer obj = new Integer(10);
 
     // returns the value of Integer as a byte
     byte b = obj.byteValue();
     System.out.println("Value of b = " + b);
   }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

Value of b = 10