Java Byte valueOf()方法
java.lang.Byte.valueOf(byte b) 返回表示指定的字节值的字节实例。
如果不要求一个新的字节实例,此方法一般应优先于构造字节(字节)使用,因为此方法是有可能产生显著更好的空间和时间性能,因为所有的字节值被存储起来。
1 语法
public static Byte valueOf(byte b)
2 参数
b:一个字节值
3 返回值
此方法返回一个字节实例代表b。
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 byte primitive bt and asign value
byte bt = -20;
// create a Byte object b
Byte b;
/**
* static method is called using class name.
* assign Byte instance value of bt to b
*/
b = Byte.valueOf(bt);
String str = "Byte value of byte primitive " + bt + " is " + b;
// print b value
System.out.println( str );
}
}
输出结果为:
Byte value of byte primitive -20 is -20
热门文章
优秀文章