TypeScript类、接口、继承

       TS引入了 Class(类)这个概念,作为对象的模板。通过class关键字,可以定义类。
       基本上,TS的 class 可以看作只是一个语法糖,它的绝大部分功能,ES5 都可以做到,新的 class 写法只是让对象原型的写法更加清晰、更像面向对象编程的语法而已。

       定义一个类

class Point {
  constructor(x, y) {
    this.x = x;
    this.y = y;
  }

  toString() {
    return '(' + this.x + ', ' + this.y + ')';
  }
}

使用这个类

let p=new Point(1,2);

需要注意的地方有以下几点:
       ①类和模块内部默认采用严格模式,不需要使用 use strict 指定运行模式。

       ② constructor 方法是类的默认方法,通过new命令生成对象实例时,自动调用该方法。一个类必须有 constructor 方法,如果没有显式定义,一个空的 constructor 方法会被默认添加,这一点与Java的类一致。

       ③必须使用 new 命令来调用 class ,否则将会报错。

       ④类不存在变量提升,只有先声明类,才能使用类。

       ⑤类的方法内部如果含有 this ,它默认指向类的实例。但是如果我们单独将其方法提取出来, this 值可能会指向当前运行的环境。为了防止这种事情的发生,我们可以使用箭头函数(箭头函数的 this 值指向初始化的函数)。

public、private、protected和readonly

       publicprivateprotectedreadonly都是类的成员(属性)修饰符
public
       在TS里,成员都默认为public。被public修饰的属性,我们在类的内外都可以自由访问到这些被定义的属性。

class Animal {
    public name: string;
    public constructor(theName: string) { this.name = theName; }
    }
 new Animal("Cat").name;//Cat

private
       当成员被标记成private时,它就不能在声明它的类的外部访问。

class Animal {
     private name: string;
     constructor(theName: string) { this.name = theName; }
    }
 new Animal("Cat").name;//Error!: Property 'name' is private and only accessible within class 'Animal'.

       TS使用的是结构性类型系统。 当我们比较两种不同的类型时,并不在乎它们从何处而来,如果所有成员的类型都是兼容的,我们就认为它们的类型是兼容的。

       这里的比较并非我们说得 == 或者 === 的比较,而是对期望值(结构)的比较。

class Animal1 {
     name: string;
    constructor(theName: string) { this.name = theName; }
}
class Animal2 {
    name: string;
   constructor(theName: string) { this.name = theName; }
}
//这样的写法是不会出错的
let a:Animal1=new Animal2("cat");

       但是被 privateprotected 修饰的成员类型不一样。如果其中一个类型里包含一个private (或protected)成员,那么当另外一个类型中也存在这样一个private (或protected)成员, 并且它们都是来自同一处声明时,那么这两个类型是兼容的,否则是不兼容的。

class Animal1 {
    private name: string;
    constructor(theName: string) { this.name = theName; }
}

class Animal2  extends Animal1{
    constructor(theName: string) {super(name); }
}

class Animal3 {
    private name: string;
    constructor(theName: string) { this.name = theName; }
}

let animal1: Animal1 = new Animal2("cat");//没问题。Animal1和Animal2的private修饰的成员变量name都来自于Animal1(都是来自同一处声明)。

let animal3: Animal1 = new Animal3("cat");//ERROR:Type 'Animal3' is not assignable to type 'Animal3'.

protected
       protected 修饰符与 private 修饰符的行为很相似,但有一点不同,protected 成员在派生类中仍然可以访问。
使用 private 修饰的父类成员,派生类无法访问。

class Person {
    private name: string;
    constructor(name: string) { this.name = name; }
}

class Employee extends Person {
    constructor(name: string) { super(name)}
    public sayName() {
        return this.name;//ERROR!: Property 'name' is private and only accessible within class 'Person'.
    }
}

let xiaoming = new Employee("xiaoming");
console.log(xiaoming.sayName());

       使用protected 修饰的父类成员,在派生类中仍然可以访问

class Person {
    protected name: string;
    constructor(name: string) { this.name = name; }
}

class Employee extends Person {
    constructor(name: string) { super(name)}
    public sayName() {
        return this.name;
    }
}
//派生类中仍能继续使用
let xiaoming = new Employee("xiaoming");
console.log(xiaoming.sayName());

readonly修饰符
        readonly 关键字与 publicprivateprotected 不一样,它修饰的不是成员的访问权限,而是成员的再赋值权限。
        使用readonly 关键字将属性设置为只读的。 只读属性必须在声明时或构造函数里被初始化。

class Octopus {
    readonly name: string;
    readonly numberOfLegs: number = 8;
    constructor (theName: string) {
        this.name = theName;
    }
}
let dad = new Octopus("Man with the 8 strong legs");
dad.name = "Man with the 3-piece suit"; // 错误! name 是只读的.
抽象类

       抽象类做为其它派生类的基类使用。 它们一般不会直接被实例化。 不同于接口,抽象类可以包含成员的实现细节。
       abstract关键字是用于定义抽象类和在抽象类内部定义抽象方法。

abstract class Animal {
    abstract makeSound(): void;// 必须在派生类中实现
    move(): void {
        console.log('roaming the earch...');
    }
}

注意:
       ①抽象类中的抽象方法不包含具体实现并且必须在派生类中实现。
       ②抽象方法必须包含abstract关键字并且可以包含访问修饰符。


接口

       在传统的面向对象概念中,一个类可以扩展另一个类,也可以实现一个或多个接口。一个接口可以实现一个或多个接口但是不能扩展另一个类或接口。wiki百科中对 OOP 中接口的定义是:

在面向对象的语言中,术语 interface 经常被用来定义一个不包含数据和逻辑代码但是用函数签名定义了行为的抽象类型。

       但是对于TS来说,接口更重要的意义是对值所具有的 结构 进行类型检查。
接口根据属性划分,可以划分成三类,一种是必选属性,另一种是可选属性,还有一种就是只读属性

必选属性

       必选属性就是函数必须要有的属性。

interface PersonVaule{
    name:string;
    age:number;
}
function Person(person:PersonVaule){
    this.name=person.name;
    this.age=person.age;
}
//创建实例
var xiaoming=new Person({name:"xiaoming",age:18})

       类型检查器并不会检查属性的顺序,但是必须要必选属性。

var xiaoming2=new Person({age:18,name:"xiaoming"})//没有问题

var xiaoming3=new Person({name:"xiaoming"})//提示属性缺失:Property 'age' is missing in type '{ name: string; }'.
可选属性

       接口里的属性不全都是必需的。 有些是只在某些条件下存在,或者根本不存在。 可选属性在应用“option bags”模式时很常用,即给函数传入的参数对象中只有部分属性赋值了。

       带有可选属性的接口与普通的接口定义差不多,只是在可选属性名字定义的后面加一个?符号。

interface AnimalVaule{
    name?:string;
    eat:string;
    lifestyle?:string;
}
function Animal(animal:AnimalVaule){
    this.name=animal.name;
    this.eat=animal.eat;
    this.lifestyle=animal.lifestyle;
}
let cat=new Animal({eat:"食肉动物",lifestyle:"昼伏夜出"});

可选属性好处有二:

       1. 可以对可能存在的属性进行预定义
       2. 可以捕获引用了不存在的属性时的错误。

下面这个例子就出现了错误提示:

let dog=new Animal({eat:"适应性的肉食类动物",lifestle:"昼行夜伏"})//'lifestle' does not exist in type 'AnimalVaule'.
只读属性

       一些对象属性只能在对象刚刚创建的时候修改其值。 你可以在属性名前用readonly来指定只读属性:

interface Point {
    readonly x: number;
    readonly y: number;
}

       你可以通过赋值一个对象字面量来构造一个Point。 赋值后,xy再也不能被改变了。

let p1: Point = { x: 10, y: 20 };
p1.x = 5; // error!

readonlyconst
       readonlyconst 声明的变量或属性都不允许二次修改。这两个属性的使用区别在于是作为变量还是属性:
做为变量使用的话用const
做为属性则使用readonly


       接口不仅仅能描述对象的属性,还能描述函数类型可索引类型类类型

函数类型

       为了使用接口表示函数类型,我们需要给接口定义一个调用签名。 它就像是一个只有参数列表和返回值类型的函数定义。参数列表里的每个参数都需要名字和类型。

interface SearchFunc {
    (source: string, subString: string): boolean;
}

let mySearch:SearchFunc=function(src,sub){
    let result = src.search(sub);
    return result > -1;
}

注意
       函数的参数会逐个进行检查,要求对应接口的位置上的参数类型是兼容的,无需名称一致。

可索引类型

       与使用接口描述函数类型差不多,我们也可以描述那些能够“通过索引得到”的类型,比如a[10]或ageMap["daniel"]。可索引类型具有一个 索引签名 ,它描述了对象索引的类型,还有相应的索引返回值类型。

索引签名共有两种形式:字符串和数字。

数字索引签名

interface NN {[index: number]: number;}
let nn: NN = [1, 2];

interface NS {[index: number]: string;}
let ns: NS = ["1", "2"];

       上面例子里,我们定义了 NN 接口和 NS 接口,它们具有索引签名。 这个索引签名表示了当用 number 去索引 NNNS 接口 时会得到 number 类型或 string 的返回值。

字符串索引签名
       字符串索引签名能够很好的描述 dictionary 模式,并且它们也会确保所有属性与其返回值类型相匹配。

interface SS {[index:string]:string}
let ss: SS = {"A":"a", "B":"b"};

interface SN {[index: string]: number;}
let sn: SN = {"A":1, "B":2};

       你可以将索引签名设置为只读,这样就防止了给索引赋值:

interface ReadonlyStringArray {
    readonly [index: number]: string;
}
let myArray: ReadonlyStringArray = ["Alice", "Bob"];
myArray[2] = "Mallory"; // error!

索引的返回值可以不只一个,但是必须是同一个类型。

interface NN {
    [index: number]: number;
    length:number;
    name: string       // 错误,`name`的类型与索引类型返回值的类型不匹配
}
let nn: NN = [1, 2];

注意: 如果有多个返回值,那么数字索引的返回值必须是字符串索引返回值类型的子类型。
对于上述的解释,TS原话是这样的:

这是因为当使用number来索引时,JavaScript会将它转换成 string 然后再去索引对象。 也就是说用100(一个 number)去索引等同于使用”100”(一个 string)去索引,因此两者需要保持一致。

       虽然字面上的解释不明所以,但是我们通过例子可以去理解其含义。

class Animal {
    name: string;
}
class Dog extends Animal {
    breed: string;
}

//ERROR!: Numeric index type 'Animal' is not assignable to string index type 'Dog'.
interface NotOkay {
    [x: number]: Animal;
    [x: string]: Dog;
}

       对于上述例子, number 索引的返回值是父类Animal,而 string 索引的返回是子类 Dog。所以TS报错。

       如果修改成 number 索引的返回值是子类Dogstring 索引的返回值是父类 Animal,则毫无问题。

class Animal {
    name: string;
}
class Dog extends Animal {
    breed: string;
}

interface Okay {
    [x: number]: Dog;
    [x: string]: Animal;
}
类类型

       与C#或Java里接口的基本作用一样,TS也能够用它来明确的强制一个类去符合某种契约。

interface ClockInterface {
    currentTime: Date;
}

class Clock implements ClockInterface {
    currentTime: Date;
    constructor(h: number, m: number) { }
}

注意:接口描述了类的公共部分,而不是公共和私有两部分。 它不会帮你检查类是否具有某些私有成员。


继承

TS允许我们通过extends关键字来 创建子类(实现继承)。
下面这个例子,Dog 类继承自 Animal 类,在Dog 类中我们可以访问父类 Animal 的属性和方法。

class Animal {
    name: string;
    constructor(theName: string) { this.name = theName; }
}
class Dog extends Animal {
    breed: string;
}

new Dog("mydog").name;//mydog

注意:包含构造函数的派生类必须调用super(),它会执行基类的构造方法。


参考资料:github上的TS库

  • 4
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
01Typescript介绍 、Typescript安装、Typescript开发工具(15分51秒).rar 02 Typescript 中的数据型 boolean 数字型 number型 string型 array型元组型 (tuple)枚举型 (enum) (上) (20分29秒).rar 03 Typescript中的数据型 任意型 (any) null 和 undefined void型 never型 (下) (16分6秒).rar 04 Typescript中的函数 函数的定义 可选参数 默认参数 剩余参数 函数重载 箭头函数 (31分50秒).rar 05 Typescript中的 Es5中的和静态方法 继承 (原型链继承、对象冒充继承、原型链+对象冒充组合继承) (20分40秒).rar 06 Typescript中的 的定义 继承 里面的修饰符 (上) (29分4秒).rar 07 Typescript中的 中的静态属性 静态方法 抽象 多态 (下) (27分52秒).rar 08 Typescript中的接口的用途 以及属性接口 (19分46秒).rar 09 Typescript中的属性接口【案例】 定义Ajax请求数据的接口 ts封装ajax (8分).rar 10 Typescript中的函数型口 【案例】 加密方法约束 (5分11秒).rar 11 Typescript中的可索引接口 接口 (12分2秒).rar 12 Typescript中接口扩展、接口继承 (7分19秒).rar 13 Typescript中的泛型 泛型变量 泛型 (22分54秒).rar 14 Typescript的泛型接口 泛型接口 (8分42秒).rar 15 Typescript泛型 - 把作为参数型的泛型 (21分47秒).rar 16 Typescript 型、接口 、泛型 综合使用--Typescript封装统一操作Mysql Mongodb Mssql的底层库 (14分31秒).rar 17 Typescript 模块 以及模块化封装DB库 封装似Mongoose风格的库 (25分22秒).rar 18 命名空间 命名空间块化 (11分35秒).rar 19 装饰器定义 装饰器 属性装饰器 装饰器工厂 (23分17秒).rar 20 装饰器 方法装饰器 方法参数装饰器 装饰器的执行顺序 (28分39秒

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值