码迷,mamicode.com
首页 > 其他好文 > 详细

2.11类中的访问类型与构造器

时间:2021-06-03 17:44:01      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:protect   code   col   传参   写法   str   ext   调用   new   

// private protected,public 访问类型
// public 允许在类里面或者外面调用
// private 允许在类内被使用
// protected 允许在类内以及继承的子类中使用
class Person3 {
  protected age: number;
  public name: string;
  private sayHi() {
    this.name;
  }
}
//constructor 构造器
class Person4 {
  // public name: string;
  constructor(public name: string) {
    this.name = name;
  }
  // 简化写法
  // constructor (public name: string){}
}
const person4 = new Person4("dell");
class Teacher4 extends Person4 {
  constructor(public age: number) {
    super("dell");
    //父类和子类都有构造器,那么子类需要继承,切需要按要求传参数
  }
}

 

2.11类中的访问类型与构造器

标签:protect   code   col   传参   写法   str   ext   调用   new   

原文地址:https://www.cnblogs.com/sinceForever/p/14843304.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!