ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • static 변수의 사용
    개발노하우/Java 2010. 3. 19. 11:08

    1.공유 필드를 위한 static

    static 필드 :

                    클래스 이름으로 접근 가능

                    객체 발생 전 메모리 할당.

     static 초기화 역역:

               ex)

               static int a;

                static { a = 5; }

     static 메쏘드 :

               static 필드를 컨트롤 하기 위한 목적이다.

                          ex)public static void methodA{){

                                      a= 10;

                               }

     static 수행 순서

               ① static 멤버 필드

               ② static 블럭

               ③ static method()

               ④ static main()

               ⑤ 나머지 method()

                                   -> 멤버들( 멤버 필드, 멤버 method )

                                          객체 생성시 메모리 할당.


Designed by Tistory.