java.lang.Byte.valueOf(String s, int radix) 返回位元組物件保持從指定的String中提取的值時,由第二個引數給出的基數進行分析。
第一個引數被解釋為代表的第二個引數指定的基數有符號位元組,就好像引數分別給予parseByte(java.lang.String, int)方法。其結果是一個位元組物件表示由字串指定的位元組值。
以下是java.lang.Byte.valueOf()方法的宣告
public static Byte valueOf(String s, int radix)throws NumberFormatException
s - 被解析的串
radix - 解釋s至使用的進位制
此方法將返回一個位元組物件持有指定基數的字串引數表示的值。
NumberFormatException - 如果String不包含一個可分析的位元組。
下面的例子顯示lang.Byte.valueOf()方法的使用。
package com.yiibai; 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