[자바의정석 기초 객체지향 개념] 제어자 static, final, abstract / 접근 제어자 / 캡슐화
제어자 modifier : 클래스와 클래스의 멤버에 부가적인 의미 부여 (=형용사) 접근제어자: public, protected, private, (default) 그외: static, final, abstract, native, transient ... 하나의 대상에 여러 제어자를 같이 사용 가능 (접근제어자는 하나만) public class Modifier { public static final int width = 200; public static void main(String[] args) { System.out.println(width); } } static: 클래스의, 공통적인 static 멤버변수 모든 인스턴스에 공통적으로 사용된다 클래스 변수는 인스턴스를 생성하지 않고도 사용 가능하다 클래..
2022. 5. 30.