Google Dart 支持 mixin 吗?

发布于 2024-12-09 06:41:09 字数 177 浏览 0 评论 0原文

我浏览过 语言文档,似乎 Google Dart 不支持 mixins (没有方法接口中的主体,没有多重继承,没有类似 Ruby 的模块)。我的说法是对的吗?还是有其他方法可以在 Dart 中实现类似 mixin 的功能?

I've skimmed through the language documentation and it seems that the Google Dart does not support mixins (no method bodies in interfaces, no multiple inheritance, no Ruby-like modules). Am I right about this, or is there another way to have mixin-like functionality in Dart?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不气馁 2024-12-16 06:41:09

我很高兴地告诉大家,现在答案是肯定的!

mixin 实际上只是子类和超类之间的增量。然后,您可以将该增量“混合”到另一个类中。

例如,考虑这个抽象类:

 abstract class Persistence {  
  void save(String filename) {  
   print('saving the object as ${toJson()}');  
  }  

  void load(String filename) {  
   print('loading from $filename');  
  }  

  Object toJson();  
 } 

然后您可以将其混合到其他类中,从而避免继承树的污染。

 abstract class Warrior extends Object with Persistence {  
  fight(Warrior other) {  
   // ...  
  }  
 }  

 class Ninja extends Warrior {  
  Map toJson() {  
   return {'throwing_stars': true};  
  }  
 }  

 class Zombie extends Warrior {  
  Map toJson() {  
   return {'eats_brains': true};  
  }  
 } 

mixin 定义的限制包括:

  • 不得声明构造函数
  • 超类是 Object
  • 不包含对 super 的调用

一些附加阅读:

I'm happy to report that the answer is now Yes!

A mixin is really just the delta between a subclass and a superclass. You can then "mix in" that delta to another class.

For example, consider this abstract class:

 abstract class Persistence {  
  void save(String filename) {  
   print('saving the object as ${toJson()}');  
  }  

  void load(String filename) {  
   print('loading from $filename');  
  }  

  Object toJson();  
 } 

You can then mix this into other classes, thus avoiding the pollution of the inheritance tree.

 abstract class Warrior extends Object with Persistence {  
  fight(Warrior other) {  
   // ...  
  }  
 }  

 class Ninja extends Warrior {  
  Map toJson() {  
   return {'throwing_stars': true};  
  }  
 }  

 class Zombie extends Warrior {  
  Map toJson() {  
   return {'eats_brains': true};  
  }  
 } 

Restrictions on mixin definitions include:

  • Must not declare a constructor
  • Superclass is Object
  • Contains no calls to super

Some additional reading:

爱,才寂寞 2024-12-16 06:41:09

编辑:

Dart 团队现在发布了他们的 Mixins 提案< /a>,Mixin 的原始问题在这里

它尚未实现,但与此同时,我发布了一个可扩展的 Dart Mixins 库,其中包括流行的 Underscore.js 功能实用程序库的端口:https://github.com/mythz/DartMixins

Edit:

The Dart team have now released their proposal for Mixins, the original issue for Mixins was here.

It's not implemented yet, but in the meantime I've released an extensible Mixins library for Dart which includes a port of the popular Underscore.js functional utility library: https://github.com/mythz/DartMixins

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文