콩's EDUCATION/콩's JAVA_RUN (105) 썸네일형 리스트형 클래스 연습 (중요) public class Variable1 { int num; //인스턴스 변수 static int snum; // 클래스 변수 public void method(String s){ String st = s; //매개변수 s와 메서드내에 선언된 st는 로컬객체 } public void othermethod(){ System.out.println(++num); System.out.println(++snum); //System.out.println(st); // 로컬변수, 로컬객체는 참조 불가!!! } public static void main(String[] args) { // System.out.println(++num); // 인스턴스변수 직접 참조 불가 Variable1 v1= new Variable1.. 이전 1 ··· 11 12 13 14 다음