public class Main {
public static void main(String[] args) {
/* from
时 代 J a v a 公 众 号 - nowjava.com*/
//1. Create a Byte object from byte
byte b = 10;
Byte bObj1 = new Byte(b);
/*2. Create Byte object from String.*/
Byte bObj2 = new Byte("4");
//print value of Byte objects
/**代码未完, 请加载全部代码(NowJava.com).**/
本文系作者在时代Java发表,未经许可,不得转载。如有侵权,请联系nowjava@qq.com删除。