Java - Byte valueOf() 方法



描述

Java Byte valueOf(byte b) 方法返回一个表示指定字节值的 Byte 实例。

如果不需要新的 Byte 实例,则通常应优先使用此方法而不是构造函数 Byte(byte),因为此方法可能会产生明显更好的空间和时间性能,因为所有字节值都被缓存。

声明

以下是 java.lang.Byte.valueOf() 方法的声明

public static Byte valueOf(byte b)

参数

b − 字节值

返回值

此方法返回一个表示 b 的 Byte 实例。

异常

获取原始正字节值的 Byte 对象示例

以下示例演示了 Byte valueOf(byte) 方法的用法。我们创建了一个字节变量并为其赋值。然后创建一个字符串变量,并使用 Byte.valueOf(byte) 方法打印字节值的数值。

package com.tutorialspoint;
public class ByteDemo {
   public static void main(String[] args) {

      // create a byte primitive bt and asign value
      byte bt = 20;

      // create a Byte object b
      Byte b;

      /**
       *  static method is called using class name.
       *  assign Byte instance value of bt to b
       */
      b = Byte.valueOf(bt);

      String str = "Byte value of byte primitive " + bt + " is " + b;

      // print b value
      System.out.println( str );
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Byte value of byte primitive 20 is 20

获取原始负字节值的 Byte 对象示例

以下示例演示了 Byte valueOf(byte) 方法的用法。我们创建了一个字节变量并为其赋予负值。然后创建一个字符串变量,并使用 Byte.valueOf(byte) 方法打印字节值的数值。

package com.tutorialspoint;
public class ByteDemo {
   public static void main(String[] args) {

      // create a byte primitive bt and asign value
      byte bt = -20;

      // create a Byte object b
      Byte b;

      /**
       *  static method is called using class name.
       *  assign Byte instance value of bt to b
       */
      b = Byte.valueOf(bt);

      String str = "Byte value of byte primitive " + bt + " is " + b;

      // print b value
      System.out.println( str );
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Byte value of byte primitive -20 is -20

获取原始零字节值的 Byte 对象示例

以下示例演示了 Byte valueOf(byte) 方法的用法。我们创建了一个字节变量并为其赋值零。然后创建一个字符串变量,并使用 Byte.valueOf(byte) 方法打印字节值的数值。

package com.tutorialspoint;
public class ByteDemo {
   public static void main(String[] args) {

      // create a byte primitive bt and asign value
      byte bt = 0;

      // create a Byte object b
      Byte b;

      /**
       *  static method is called using class name.
       *  assign Byte instance value of bt to b
       */
      b = Byte.valueOf(bt);

      String str = "Byte value of byte primitive " + bt + " is " + b;

      // print b value
      System.out.println( str );
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Byte value of byte primitive 0 is 0
java_lang_boolean.htm
广告