Java - Byte valueOf() 方法



描述

Java Byte valueOf(String s) 方法返回一个 Byte 对象,该对象包含由指定字符串给出的值。该参数被解释为表示一个有符号十进制字节,就像将该参数传递给 parseByte(java.lang.String) 方法一样。

结果是一个 Byte 对象,它表示字符串指定的字节值。

声明

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

public static Byte valueOf(String s) throws NumberFormatException

参数

s - 要解析的字符串

返回值

此方法返回一个 Byte 对象,该对象包含字符串参数表示的值。

异常

NumberFormatException - 如果字符串不包含可解析的字节。

使用加号解析字符串以获取字节示例

以下示例演示了 Byte valueOf(String) 方法的用法。我们创建了一个字符串变量并为其分配了一个值。然后创建一个 Byte 变量,并使用 Byte.valueOf(String) 方法解析字符串的值并打印出来。

package com.tutorialspoint;

public class ByteDemo {
   public static void main(String[] args) {

      // create a String s and assign value to it
      String s = "+120";

      // create a Byte object b
      Byte b;

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

      String str = "Byte value of string " + s + " is " + b;

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

输出

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

Byte value of string +120 is 120

使用减号解析字符串以获取字节示例

以下示例演示了 Byte valueOf(String) 方法的用法。我们创建了一个字符串变量并为其分配了一个负值。然后创建一个 Byte 变量,并使用 Byte.valueOf(String) 方法解析字符串的值并打印出来。

package com.tutorialspoint;

public class ByteDemo {
   public static void main(String[] args) {

      // create a String s and assign value to it
      String s = "-120";

      // create a Byte object b
      Byte b;

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

      String str = "Byte value of string " + s + " is " + b;

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

输出

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

Byte value of string -120 is -120

解析字符串以获取字节时检查 NumberFormatException 示例

以下示例演示了 Byte valueOf(String) 方法的用法。我们创建了一个字符串变量并为其分配了一个无效值。然后创建一个 Byte 变量,并使用 Byte.valueOf(String) 方法解析字符串的值,并且正如预期的那样,发生了 NumberFormatException。

package com.tutorialspoint;

public class ByteDemo {
   public static void main(String[] args) {

      // create a String s and assign value to it
      String s = "-1204";

      // create a Byte object b
      Byte b;

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

      String str = "Byte value of string " + s + " is " + b;

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

输出

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

Exception in thread "main" java.lang.NumberFormatException: Value out of range. Value:"-1204" Radix:10
	at java.base/java.lang.Byte.parseByte(Byte.java:154)
	at java.base/java.lang.Byte.valueOf(Byte.java:208)
	at java.base/java.lang.Byte.valueOf(Byte.java:234)
	at com.tutorialspoint.ByteDemo.main(ByteDemo.java:17)
java_lang_byte.htm
广告