Contact: aviboots(AT)netvision.net.il
39,859 questions
51,780 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 */