[Java 소스] 기본 형식의 래퍼 클래스 개체를 생성하여 출력한 예 //기본 형식의 래퍼 클래스 개체를 생성하여 출력한 예public class Program { public static void main(String[] args){ Boolean b1 = new Boolean(true); System.out.println(b1); Boolean b2 = new Boolean("false"); System.out.println(b2); byte ob1 = (byte)3; Byte by1 = new Byte(ob1); System.out.println(by1); Byte by2 = new Byte("123"); System.out.println(by2); Character c1 = new Characte..