You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
접근 제어자
접근 제어자를 통해 각 요소(클래스, 인터페이스, 멤버)의 접근 허용 범위를 설정한다.
캡슐화
원칙을 구현하며, 클래스 내부의 데이터를 보호하고 외부에서의 무분별한 접근을 제어할 수 있다.접근 제어자의 종류
Java에서는 4가지의 접근 제어자를 제공한다.
(1) public
어디에서나 접근 가능!
(2) protected
동일 패키지 OR 하위 클래스인 경우
(3) default(package-private)
동일 패키지인 경우
(4) private
오로지 같은 클래스에서만 접근 가능
클래스와 인터페이스에서 사용 가능한 접근 제어자
클래스에서는
public
또는default(package-private)
로만 설정이 가능하다!Beta Was this translation helpful? Give feedback.
All reactions