"interface" 关键字是否已从 Dart 中删除?
Was the "interface" keyword removed from Dart?
可以肯定的是,Dart 是否删除了显式定义 interface
现在支持通过 abstract
隐式定义它?
我看到 Dart and Interface Segregation Principle, however I'm also finding a lot of content still referencing the explicit definition, such as When to use interfaces in Dart?
中提到了它
是的。 interface 关键字已从 Dart 中删除。相反,所有 classes 都有 implicit interfaces。所以如果你想定义一个接口,你可以使用抽象 class 来代替。
请参阅 2012 年关于删除接口关键字的 blog post。
可以肯定的是,Dart 是否删除了显式定义 interface
现在支持通过 abstract
隐式定义它?
我看到 Dart and Interface Segregation Principle, however I'm also finding a lot of content still referencing the explicit definition, such as When to use interfaces in Dart?
中提到了它是的。 interface 关键字已从 Dart 中删除。相反,所有 classes 都有 implicit interfaces。所以如果你想定义一个接口,你可以使用抽象 class 来代替。
请参阅 2012 年关于删除接口关键字的 blog post。