Contact: aviboots(AT)netvision.net.il
41,593 questions
54,235 answers
573 users
package javaapplication1; public class JavaApplication1 { public static void main(String[] args) { byte b = 127; Byte bObj = b; System.out.println(bObj); } } /* run: 127 */
package javaapplication1; public class JavaApplication1 { public static void main(String[] args) { Byte bObj = 127; System.out.println(bObj); } } /* run: 127 */
package javaapplication1; public class JavaApplication1 { public static void main(String[] args) { Byte bObj = new Byte("127"); System.out.println(bObj); } } /* run: 127 */