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


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



描述

這個java.lang.Integer.byteValue() 方法以字節形式返回此 Integer 的值。

聲明

以下是聲明java.lang.Integer.byteValue()方法

public byte byteValue()

參數

NA

返回值

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

異常

NA

示例

下麵的例子展示了 java.lang.Integer.byteValue() 方法的用法。

package com.tutorialspoint;

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

相關用法


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