접근 제한이 따로 없다. 상속도 가능하고, 외부 객체를 통한 접근도 가능하다
class User {
public name : stirng;
constructor(){
this.name = 'kim';
}
}
let User1 = new User();
User1.name = 'Choi'; //변경 가능
상속 불가능, 외부 객체에서의 접근도 불가능
class User {
public name : string;
private familyName : string;
constructor(){
this.name = 'kim';
let hello = this.familyName + 'Hi'; //class{} 내부에서는 변경 가능
}
}
let user1 = new User();
user1.name = 'choi'; // public이라 가능
user1.familyName = 123; //private라 에러발생
private를 수정하고 싶을 때
class User {
public name :string;
private familyName :string;
constructor(){
this.name = 'kim';
let hello = this.familyName + '안뇽';
}
changeSecret(){
this.familyName = 'park'; // prototype에 함수 생성
}
}
let user1 = new User();
user1.familyName = 'choi'; //에러남
user1.changeSecret()
public처럼 상속은 가능하지만 와부객체에서의 접근이 허용되지 않는다
class User{
protected age = 10;
}
class NewUser extends User{
doThis(){
this.age = 20;
}
}
접근제한자 | 특징 | 상속여부 | 외부 객체 접근 |
---|---|---|---|
public | public으로 설정된 멤버(멤버변수, 멤버메서드)는 상속 및 접근 가능 | 가능 | 가능 |
protected | protected 설정된 멤버는 자식클레스에서 접근 가능 | 가능 | 불가능 |
private | private로 설정된 멤버는 현재 클레스에서만 접근 가능 | 불가능 | 불가능 |