(二十五)interface 类继承

2023-02-22 15:06:45 浏览数 (1)

# 一、interface 类继承

说明

上一章节我们使用 interface 类的继承,这一章节我们来学习一下 interface 类的继承

代码语言:javascript复制
interface Product {
    title: string
    price: number
}

// 继承上面的属性, 然后在添加自己独有的属性
interface Tshirt extends product {
    size: 'S' | 'L' | 'M'
}

let product: Product = {
    title: '牛仔裤',
    price: 100,
    size: 'M'
}

# 总结-写在最后

总结

这种继承方式,也可以采用面向对象里面的继承来最大话的复用代码

0 人点赞