자바 기초 Basic of Java | Type of Variable by location, 위치에 따른 변수의 종류


자바 기초 Basic of Java | Type of Variable by location,  위치에 따른 변수의 종류

Type of Variable by location 선언 위치에 따른 변수의 종류 1. Class Variable (클래스 변수) = static + Instance Variable(IV) 2. Instance Variable (인스턴스 변수) 3. Local Variable (지역 변수) static int cv; //Class Variable (static이 붙는다.) int iv; //Instance Variable int lv = 0; //Local Variable //------------------------------------- class Variables { int iv; //Instance Variable static int cv;//Class Variable //----------- ..


원문링크 : 자바 기초 Basic of Java | Type of Variable by location, 위치에 따른 변수의 종류