記錄

JAVA) 메모리 구조 -2 (수정중) 본문

Computer language/JAVA

JAVA) 메모리 구조 -2 (수정중)

surhommejk 2018. 2. 8. 17:48




















1)

public class Q1 {
    static int cv = 1;
    int iv = 1;

    static { cv = 2; }

    { iv = 2; }

    Q1() { iv = 3; }

    public void main(String args[]) {
        Q1 i = new Q1();
        System.out.println(cv);
        System.out.println(i.iv);
    }
}









































'Computer language > JAVA' 카테고리의 다른 글

JAVA) Down Casting  (0) 2018.02.09
JAVA) 컬렉션 프레임워크(Collection Framework)  (0) 2018.02.09
JAVA) 메모리 구조 -1  (0) 2018.02.08
JAVA) String과 주소값  (0) 2018.02.08
JAVA) 예외처리(throw , throws)  (0) 2018.02.08
Comments