Java Byte valueOf()方法
java.lang.Byte.valueOf(String s) 返回一个字节对象持有指定的字符串中给定的值。该参数被解释为表示一个有符号十进制字节,就好像参数分别给予parseByte(java.lang.String)方法。
其结果是一个字节对象表示由字符串指定的字节值。
1 语法
public static Byte valueOf(String s)throws NumberFormatException
2 参数
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 = "+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
热门文章
优秀文章