티스토리 뷰



public class Main {
       public static void main(String[] args) {
             /* 레퍼런스 데이터 타입 */
       Integer i = 1;
       Float f = 1.1f;
       Double d = 1.2;
       Boolean b = true;
       Character c = 'a';
       String s = "Hello World";
       System. out.println( i);
       System. out.println( f);
       System. out.println( d);
       System. out.println( b);
       System. out.println( c);
       System. out.println(s );
      }
}


'프로그래밍 > 자바' 카테고리의 다른 글

[자바] 자바 배열 사용 예제 2  (0) 2016.12.27
[자바] 자바 배열 사용 예제  (0) 2016.12.26
[자바] 자바 기본 데이터 타입 예제  (0) 2016.12.23
[자바] HelloWorld 예제  (0) 2016.12.21
[자바] war 파일 제작  (0) 2016.12.20
댓글