목록멤버클래스 (1)
가자미의 개발이야기
자바 네스티드 클래스
-네스티드 클래스 : 클래스 안에 정의된 클래스 --static 여부에 따라 스태틱 네스티드 클래스/이너 클래스로 구분. ---이너 클래스도 멤버/로컬/익명 클래스로 구분 -스태틱 네스티드 클래스(Outer 클래스와 별 상관 없음) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 class Outer{ private static int num =0; //외부 접근이 불가능한 변수지만 nested1, nested2로는 접근 가능 static class Nested1{ void add(int n) {num+=n;} } static class Nested2{ int get() {return num;} } } public class StaticNested { public stat..
Java/자바 기본 문법
2021. 2. 4. 09:10