interface

作者: 苍老师的眼泪 | 来源:发表于2022-08-25 20:15 被阅读0次

    定义 interface 类型和用 type 定义类型别名是类似的,注意 interface 定义类型不需要等号:

    type person = {
        name: string,
        age: number,
        alias?: string,
    }
    
    interface people {
        name: string,
        age: number,
        alias?: string,
    }
    

    // 向现有结构添加属性

    interface people {
        gender: 0 | 1
    }
    

    如果是 type 的话,会提示重复定义

    接口继承接口

    interface Animal {
        gender: 0 | 1
    }
    
    interface Colorful {
        color: string
    }
    
    // 很显然 ts 支持多重扩展
    interface Human extends Animal, Colorful {
        speak: () => void
    }
    
    let edison: Human = {
        gender: 1,
        speak() {
            console.log('Are you ok?')
        },
        color: 'blue'
    }
    

    相关文章

      网友评论

          本文标题:interface

          本文链接:https://www.haomeiwen.com/subject/uttogrtx.html