Java Byte valueOf()方法

java.lang.Byte.valueOf(String s, int radix) 返回字节对象保持从指定的String中提取的值时,由第二个参数给出的基数进行分析。

第一个参数被解释为代表的第二个参数指定的基数有符号字节,就好像参数分别给予parseByte(java.lang.String, int)方法。其结果是一个字节对象表示由字符串指定的字节值。

1 语法

public static Byte valueOf(String s, int radix)throws NumberFormatException

2 参数

s:被解析的串

radix:解释s至使用的进制

3 返回值

此方法将返回一个字节对象持有指定基数的字符串参数表示的值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Byte valueOf()方法
 */
import java.lang.*;

public class ByteDemo {

   public static void main(String[] args) {

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

      // create a Byte object b
      Byte b;

      /**
       *  static method is called using class name.
       *  assign Byte instance value of s to b using radix as 2
       *  radix 2 represents binary
       */
      b = Byte.valueOf(s, 2);

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

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

输出结果为:

Byte value of string -1010 using radix 2 is -10

 

热门文章

优秀文章