JavaScript 扩展类

发布于 2024-08-21 08:00:41 字数 1432 浏览 10 评论 0原文

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

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

发布评论

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

评论(3

小女人ら 2024-08-28 08:00:41

查看简单 JavaScript 继承JavaScript 中的继承模式

最简单的方法可能是函数继承,但也有优点和缺点。

Take a look at Simple JavaScript Inheritance and Inheritance Patterns in JavaScript.

The simplest method is probably functional inheritance but there are pros and cons.

も星光 2024-08-28 08:00:41

Douglas Crockford 对 JavaScript 中的继承有一些非常好的解释:

  1. 原型继承:“自然”方式在 JavaScript 中执行操作
  2. 经典继承:更接近大多数 OO 语言中的内容,但很友好违背 JavaScript 原则的运行

Douglas Crockford has some very good explanations of inheritance in JavaScript:

  1. prototypal inheritance: the 'natural' way to do things in JavaScript
  2. classical inheritance: closer to what you find in most OO languages, but kind of runs against the grain of JavaScript
千纸鹤 2024-08-28 08:00:41
   extend = function(destination, source) {   
          for (var property in source) {
            destination[property] = source[property];
          }
          return destination;
    };

扩展 JavaScript< /a>

您还可以将过滤器添加到 for 循环中。

   extend = function(destination, source) {   
          for (var property in source) {
            destination[property] = source[property];
          }
          return destination;
    };

Extending JavaScript

You could also add filters into the for loop.

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