Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 메서드
- 에러페이지
- Android
- paint
- AWT
- 오버로딩
- 메소드
- Spring
- 어노테이션
- OGNL
- 생성자
- oracle
- 배열
- JSP
- 전화걸기
- Java
- Menu
- HTML
- mybatis
- 이클립스
- 클래스
- JavaScript
- 국제화
- Eclips
- layout
- 예외처리
- 기본
- struts2
- Graphic
- 안드로이드
Archives
- Today
- Total
note
내부 클래스 static 본문
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 |
---|---|
내부 클래스 호출에 대해서 (0) | 2011.12.23 |
내부 클래스 static (0) | 2011.12.23 |
내부 클래스 상수 호출 (0) | 2011.12.23 |
내부 클래스 상수 호출 (0) | 2011.12.23 |