目录

byte byteValue()

描述 (Description)

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

声明 (Declaration)

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

public byte byteValue()

参数 (Parameters)

NA

返回值 (Return Value)

转换为byte类型后,此方法返回此对象表示的数值。

异常 (Exception)

NA

例子 (Example)

以下示例显示了java.lang.Integer.byteValue()方法的用法。

package com.iowiki;
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
↑回到顶部↑
WIKI教程 @2018