zoukankan      html  css  js  c++  java
  • TypeScript

    一、基本概念

    接口是对行为的抽象,例子中,定义了一个接口 Person,接着定义了一个变量 tom,它的类型是 Person。这就约束了 tom 的形状必须和接口 Person 一致。

    interface Person {
        name: string;
        age: number;
    }
    
    let tom: Person = {
        name: 'Tom',
        age: 25
    };

    定义的变量比接口少了一些属性或多了一些属性是不允许的,可见,赋值的时候,变量的形状必须和接口的形状保持一致:

    interface Person {
        name: string;
        age: number;
    }
    
    let tom: Person = {
        name: 'Tom'
    };
    
    // index.ts(6,5): error TS2322: Type '{ name: string; }' is not assignable to type 'Person'.
    //   Property 'age' is missing in type '{ name: string; }'.

    二、可选属性

    有时我们希望不要完全匹配一个形状,那么可以用可选属性,可选属性的含义是该属性可以不存在,这时仍然不允许添加未定义的属性

    interface Person {
        name: string;
        age?: number;
    }
    let tom: Person = {
        name: 'Tom'
    };
    
    // 不允许添加接口中未定义的属性
    interface Person {
        name: string;
        age?: number;
    }
    let tom: Person = {
        name: 'Tom',
        age: 25,
        gender: 'male'
    };
    // examples/playground/index.ts(9,5): error TS2322: Type '{ name: string; age: number; gender: string; }' is not assignable to type 'Person'.
    //   Object literal may only specify known properties, and 'gender' does not exist in type 'Person'.

    三、任意属性

    有时候我们希望一个接口允许有任意的属性,使用 [propName: string] 定义了任意属性取 string 类型的值:

    interface Person {
        name: string;
        age?: number;
        [propName: string]: any;
    }
    
    let tom: Person = {
        name: 'Tom',
        gender: 'male'
    };

    需要注意的是,一旦定义了任意属性,那么确定属性和可选属性的类型都必须是它的类型的子集,下例中,任意属性的值允许是 string,但是可选属性 age 的值却是 numbernumber 不是 string 的子属性,所以报错了

    interface Person {
        name: string;
        age?: number;
        [propName: string]: string;
    }
    
    let tom: Person = {
        name: 'Tom',
        age: 25,
        g
    // index.ts(3,5): error TS2411: Property 'age' of type 'number' is not assignable to string index type 'string'.
    // index.ts(7,5): error TS2322: Type '{ [x: string]: string | number; name: string; age: number; gender: string; }' is not assignable to type 'Person'.
    // Index signatures are incompatible.
    // Type 'string | number' is not assignable to type 'string'.
    // Type 'number' is not assignable to type 'string'.

    四、只读属性

    有时候我们希望对象中的一些字段只能在创建的时候被赋值,那么可以用 readonly 定义只读属性:

    interface Person {
        readonly id: number;
        name: string;
        age?: number;
        [propName: string]: any;
    }
    
    let tom: Person = {
        id: 89757,
        name: 'Tom',
        gender: 'male'
    };
    
    tom.id = 9527;
    
    // index.ts(14,5): error TS2540: Cannot assign to 'id' because it is a constant or a read-only property
  • 相关阅读:
    redis 配置文件说明
    Python 详解命令行解析
    Python 的字符编码
    pt-online-schema-change utf8mb4 错误解决方法【转】
    [MySQL 5.6] Innodb新特性之export/import 表文件
    查找数据库大小和表大小
    MySQL 增删列
    使用MySQL Shell创建MGR
    Qingcloud_MySQL Plus(Xenon) 高可用搭建实验
    MySQL事务提交流程
  • 原文地址:https://www.cnblogs.com/xjy20170907/p/10881211.html
Copyright © 2011-2022 走看看