public class StaticEx3 {
	
	public static void main(String[] args){
		StaticCount sc1 = new StaticCount();
		System.out.println("sc1의 c: "+ sc1.c + ", sc1의 count: " + StaticCount.count);
		StaticCount sc2 = new StaticCount();
		System.out.println("sc2의 c: "+ sc2.c + ", sc2의 count: " + StaticCount.count);
		StaticCount sc3 = new StaticCount();
		System.out.println("sc3의 c: "+ sc3.c + ", sc3의 count: " + StaticCount.count);
	}
}

sc1의 c: 1, sc1의 count: 1

sc2의 c: 1, sc2의 count: 2
sc3의 c: 1, sc3의 count: 3


'Java > Constructor (생성자)' 카테고리의 다른 글

예비  (0) 2012.04.11
정적 메서드 정의하기  (0) 2012.04.11
static 기본  (0) 2012.04.11
정직 멤버변수와 인스턴스 멤버 변수의 차이점  (0) 2012.04.11
메소드 간단 예제  (0) 2012.04.11

+ Recent posts