TypeScript 1.3
受保护的类里面新的protected修饰符作用与其它语言如C++,C#和Java中的一样。一个类的protected成员只在这个类的子类中可见:class Thing { protected doSomething() { /* ... */ }}class MyThing extends Thing { public myMethod() { // OK,可以在子类里访问受保护的成员 this.doSomething(); }}var t = new MyThing();t.doSomething();
Xebcnor