Angular中是否有接口和抽象之类的东西?

时间:2019-02-27 03:40:41

标签: angular abstract-class

我在Angular工作。我想知道它在接口和抽象类方面是否具有类似java的类结构。

1 个答案:

答案 0 :(得分:1)

由于Angular使用Typescript,答案是肯定的:请查看此手册: https://www.typescriptlang.org/docs/handbook/classes.html

组件继承有特殊的规则(模板和样式不会被继承),请查看以下内容:https://scotch.io/tutorials/component-inheritance-in-angular-2