[07] Type Script Access modifier

HJ-C·2022년 4월 21일
0

TypeScript

목록 보기
7/9
post-thumbnail


Access modifier

(1) public

접근 제한이 따로 없다. 상속도 가능하고, 외부 객체를 통한 접근도 가능하다

	class User {
      public name : stirng;

	constructor(){
      this.name = 'kim';
    }
}

	let User1 = new User();
	User1.name = 'Choi'; //변경 가능
  • public이 붙은 속성은 자식 object들이 마음대로 사용하고 수정가능함
  • public 키워드는 class 내의 prototype 함수에도 붙일 수 있다

(2) private

상속 불가능, 외부 객체에서의 접근도 불가능

	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를 수정하고 싶을 때

  • prototype에 변경 함수 추가
    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() 

(3) protected

public처럼 상속은 가능하지만 와부객체에서의 접근이 허용되지 않는다

	class User{
      protected age = 10;
	}
    
    class NewUser extends User{
      doThis(){
        this.age = 20;
      }
    }
  • private와 돌일하게 class{} 안에서만 사용이 가능해지며 User의 자식들도 함부로 사용이 불가능
  • class를 많이 생성할 때 주로 사용

(4) 종합

접근제한자특징상속여부외부 객체 접근
publicpublic으로 설정된 멤버(멤버변수, 멤버메서드)는 상속 및 접근 가능가능가능
protectedprotected 설정된 멤버는 자식클레스에서 접근 가능가능불가능
privateprivate로 설정된 멤버는 현재 클레스에서만 접근 가능불가능불가능
profile
생각을 기록하자

0개의 댓글

관련 채용 정보