Java.lang.Byte.valueOf() 方法

描述

java.lang.Byte.valueOf(String s) 返回一个 Byte 对象,该对象保存由指定 String 给出的值。 该参数被解释为表示一个带符号的十进制字节,就像将该参数提供给 parseByte(java.lang.String) 方法一样。

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


声明

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

public static Byte valueOf(String s)throws NumberFormatException

参数

s − 要解析的字符串


返回值

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


异常

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


示例

下面的例子展示了 lang.Byte.valueOf() 方法的使用。

package com.tutorialspoint;

import java.lang.*;

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