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 | 29 | 30 | 31 |
Tags
- AWT
- oracle
- JavaScript
- HTML
- Graphic
- 안드로이드
- 배열
- OGNL
- JSP
- Java
- 어노테이션
- 에러페이지
- Menu
- 기본
- 클래스
- struts2
- 이클립스
- 국제화
- layout
- 오버로딩
- 생성자
- paint
- Spring
- 전화걸기
- 메소드
- mybatis
- Android
- 메서드
- Eclips
- 예외처리
Archives
- Today
- Total
note
내부 클래스 본문
package com.inner;//내부 클래스 class Outer{ int a =100; //멤버 내부 클래스 class Inner{ int b = 200; } } public class InnerTest { public static void main(String[] args){ Outer ot = new Outer(); System.out.println("ot = "+ot); System.out.println(ot.a); //내부 클래스 객체 생성 Outer.Inner oi = ot.new Inner(); System.out.println("oi = "+oi); System.out.println(oi.b); } }
class Outer{ //멤버 변수 int a = 100; //멤버 내부 클래스 class Inner{ int b = 200; public void make(){ //멤버 내부 클래스는 내부 클래스를 포함하는 \ //클래스(Outer)의 멤버변수 호출 가능 System.out.println("a = "+a); System.out.println("B = "+b); } } } public class InnerTest { public static void main(String[] args){ /*Outer ot = new Outer(); Outer.Inner oi = ot.new Inner(); oi.make();*/ Outer.Inner oi = new Outer().new Inner(); oi.make(); } }
package com.inner3; public class LocalInner { public void innerTest(){ //로컬 내부 클래스 class Inner{ public void getDate(){ System.out.println("Local 내부 클래스 호출!!"); } } Inner i = new Inner(); i.getDate(); }//innerTest()끝 public static void main(String[] args){ LocalInner outer = new LocalInner(); outer.innerTest(); } }