JAVA 언어에서 static 필드 이해하기

*** 검색어: nabiro, JAVA, static, 용어, 이해


class sample{
    private int x, y;
    private string strA;

    private static int a = 100;    // static 초기화 블록을 사용하지 않고 바로 값 할당도 가능

    private static int b;            // 이곳은 static 초기화 블록을 사용하는 곳
    static{
        b = 200;
    }

    public sample(){
        x = 10;
        y = 20;
        strA = "sample";
    }
}

댓글

Designed by JB FACTORY