是否从Dart中删除了“interface”关键字?

时间:2015-02-18 22:52:00

标签: class interface dart abstract definition

可以肯定的是,Dart是否已明确定义了interface现在支持通过abstract隐式定义它?

我在Dart and Interface Segregation Principle中看到了它,但是我也发现很多内容仍然引用了明确的定义,例如When to use interfaces in Dart?

1 个答案:

答案 0 :(得分:9)

是。 interface关键字已从Dart中删除。相反,所有课程都有implicit interfaces。因此,如果要定义接口,则可以使用抽象类。

请参阅2012年的blog post有关取消接口关键字的信息。