摘要:
//类的定义 class Animal{ id:string;//默认访问修饰符为 public : 类本身、子类、类外部可访问 public name:string; // public : 类本身、子类、类外部可访问 protected type:string = '动物'; // 保护成员 protected, 类本身、子类可访问, 类外部不可访问 private color:string; 阅读全文
posted @ 2019-10-22 17:56
圆圆方方
阅读(243)
评论(0)
推荐(0)