String a = new String("happy java")

int[] odds = {1,2,3};, String[] weeks = {"월", "화"};

String[] weeks = new String[7] 선언, 초기화

public class test {

	int iv; // 인스턴스 변수
	static int cv; // 클래스 변수
	//위 두개는 멤버 변수

	void method() {
		int lv; // 지역 변수
	}
}

Instance variable

Class variable