"접근제어자"의 두 판 사이의 차이

위키원
이동: 둘러보기, 검색
2번째 줄: 2번째 줄:
  
 
== 종류 ==
 
== 종류 ==
 +
:{|class=wikitable width=700 style="background-color:#ffffee"
 +
|+
 +
!align=center style="background-color:#ffeecc"|변수
 +
!align=center style="background-color:#ffeecc"|내용
 +
|-
 +
|align=center|
 +
|align=center|
 +
|-
 +
|align=center|
 +
|align=center|
 +
|}
 +
 
=== public ===
 
=== public ===
 
모든 접근을 허용
 
모든 접근을 허용

2020년 8월 11일 (화) 09:59 판

접근제어자란 자바 클래스에서 멤버들이 노출되는 것을 막기 위해 접근을 제한해주는 것을 말한다.[1]

종류

변수 내용

public

모든 접근을 허용

protected

같은 패키지(폴더)에 있는 객체와 상속관계의 객체들만 허용

default

같은 패키지(폴더)에 있는 객체들만 허용

private

현재 객체 내에서만 허용

각주

  1. Gyrfalcon, <JAVA 접근 제한자 (public, private, protected, defalult)>, <<개인 블로그>>, 2014-02-27

참고자료