static1 자바(JAVA) - static 변수 / static 메서드 static static 변수 = 클래스 변수 statc 메서드 = 클래스 메서드 static 변수 역할 프로그램에서 단 하나만 존재하는 변수를 설정 (여러개 존재하면 X) 여러개의 인스턴스가 같은 메모리의 값을 공유하기 위해 사용 인스턴스가 공유하는 변수 예시 Student 클래스 생성 public class Student { int studentID; Stirng studentName; static String position = "student"; } 위와 같이 class를 만들었을 경우 실행단에서 2개의 인스턴스를 생성한다 했을 때 Student 인스턴스 생성 public class StudentTest { public static void main(String[] args) { Student s.. 2022. 3. 25. 이전 1 다음