Java/디딤돌 Java 언어 Part1

[Java 소스] 기본 형식의 래퍼 클래스 개체를 생성하여 출력한 예

언제나휴일 2017. 1. 8. 10:59
반응형

[Java 소스] 기본 형식의 래퍼 클래스 개체를 생성하여 출력한 예


Program.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 Character('a');

               System.out.println(c1);

              

               short os = 10200;

               Short s1 = new Short(os);

               System.out.println(s1);

               Short s2 = new Short("32000");

               System.out.println(s2);

              

               Integer i1 = new Integer(2000000);

               System.out.println(i1);

               Integer i2 = new Integer("30000000");

               System.out.println(i2);

              

               long ol = 35l;

               Long l1 = new Long(35l);

               System.out.println(l1);

               Long l2 = new Long("38");

               System.out.println(l2);

                

               Float f1 = new Float(3.14f);

               System.out.println(f1);

               Float f2 = new Float("2.10");

               System.out.println(f2);

              

               Double d1 = new Double(4.56);

               System.out.println(d1);

               Double d2 = new Double("1.23456");

               System.out.println(d2);

        }

}


실행 결과

true

false

3

123

a

10200

32000

2000000

30000000

35

38

3.14

2.1

4.56

1.23456



본문

[Java] 6.4 기본 형식의 래퍼 클래스

학습에 도움이 되시면 ebook 구입(판매가 3000, ebook)하여 소장하시면 감사하겠습니다.

반응형