note

내부 클래스 static 본문

자바/제어자

내부 클래스 static

투한 2011. 12. 23. 16:37
package com.inner4;//내부 클래스 static 알아보기

public class InnerEx {
	//내부 클래스가 static 변수를 갖고 있으면
	//클래스를 static으로 지정해야 함
	static class StaticInner{
		int iv = 200;
		static int cv = 300;
	}
	public static void main(String[] args){
		InnerEx.StaticInner i = new InnerEx.StaticInner();
		System.out.println(i.iv);
		System.out.println(InnerEx.StaticInner.cv);
	}
}


200
300

'자바 > 제어자' 카테고리의 다른 글

내부 클래스 호출에 대해서  (0) 2011.12.23
내부 클래스 static  (0) 2011.12.23
내부 클래스 상수 호출  (0) 2011.12.23
내부 클래스 상수 호출  (0) 2011.12.23
내부 클래스 지역변수 상수 호출  (0) 2011.12.23