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
- Eclips
- Android
- paint
- 배열
- 이클립스
- AWT
- 전화걸기
- 국제화
- 오버로딩
- Java
- layout
- 클래스
- 기본
- struts2
- 안드로이드
- HTML
- Graphic
- Menu
- 에러페이지
- oracle
- OGNL
- 메서드
- mybatis
- JSP
- 생성자
- 메소드
- Spring
- 예외처리
- 어노테이션
- JavaScript
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(); } }