TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Inheritance, Pseudo Classes and Mixins Gone Awray | railway

1 点作者 nexneo将近 14 年前

1 comment

rcoder将近 14 年前
The interesting point missed in this article is that mixins actually <i>do</i> create a superclass relationship in Ruby:<p><a href="http://gist.github.com/945435" rel="nofollow">http://gist.github.com/945435</a><p>There's an anonymous superclass injected into the inheritance chain every time a module is included into a class.<p>So, while it might make sense to use explicit superclasses as a semantic modeling method, the runtime behavior is effectively the same whether you use a mixin or a concrete class.