What is the equivalent of protected in TypeScript?

前端 未结 3 1809
小蘑菇
小蘑菇 2021-02-06 20:55

What is the equivalent of protected in TypeScript?

I need to add some member variables in the base class to be used on

3条回答
  •  再見小時候
    2021-02-06 21:46

    Updates

    November 12th, 2014. Version 1.3 of TypeScript is available and includes the protected keyword.

    September 26th, 2014. The protected keyword has landed. It is currently pre-release. If you are using a very new version of TypeScript you can now use the protected keyword... the answer below is for older versions of TypeScript. Enjoy.

    View the release notes for the protected keyword

    class A {
        protected x: string = 'a';
    }
    
    class B extends A {
        method() {
            return this.x;
        }
    }
    

    Old Answer

    TypeScript has only private - not protected and this only means private during compile-time checking.

    If you want to access super.property it has to be public.

    class A {
        // Setting this to private will cause class B to have a compile error
        public x: string = 'a';
    }
    
    class B extends A {
        method() {
            return super.x;
        }
    }
    

提交回复
热议问题