https://wikidocs.net/228 07-03 스태틱 스태틱(static)은 클래스에서 공유되는 변수나 메서드를 정의할 때 사용된다. 이번 절에서는 스태틱에 대해서 자세히 알아보자. [TOC] ## static 변수 다음과 … wikidocs.net 스태틱(static)은 클래스에서 공유되는 변수나 메서드를 정의할 때 사용된다. 위 링크를 보고 공부했기 때문에 아래 예시를 보면서 static을 더 자세히 이해했다. - static이 있는 경우 class HouseLee { static String lastname = "이"; } public class Sample { public static void main(String[] args) { HouseLee lee1 = new HouseLee();..