作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
今天我看到了一个我不熟悉的JavaScript语法(调用函数时)。就像:
def('Person') ({
init: function(name) {this.name=name;}
,speak: function(text) {alert(text || 'Hi, my name is ' + this.name);}
});
和
def('Ninja') << Person ({
kick: function() {this.speak('I kick u!');}
});
1:第一个例子中括号内的对象会发生什么?它由 def
处理以某种方式运行,但我不明白这里发生了什么(参见下面的 def
函数)。物体去了哪里?
2:同样的事情,但是使用了<<
我从未见过的运算符(我认为!)。这是怎么回事?
代码来自http://gist.github.com/474994 ,其中 Joe Dalton 做了一个小的 JavaScript-OO-inheritance 东西(它显然是别人工作的一个分支,但看起来完全重写了)。也许您想在那里查看 def
引用的内容函数,我在这里给你:
function def(klassName, context) {
context || (context = global);
// Create class on given context (defaults to global object)
var Klass =
context[klassName] = function Klass() {
// Called as a constructor
if (this != context) {
// Allow the init method to return a different class/object
return this.init && this.init.apply(this, arguments);
}
// Called as a method
// defer setup of superclass and plugins
deferred._super = Klass;
deferred._plugins = arguments[0] || { };
};
// Add static helper method
Klass.addPlugins = addPlugins;
// Called as function when not
// inheriting from a superclass
deferred = function(plugins) {
return Klass.addPlugins(plugins);
};
// valueOf is called to set up
// inheritance from a superclass
deferred.valueOf = function() {
var Superclass = deferred._super;
if (!Superclass)
return Klass;
Subclass.prototype = Superclass.prototype;
Klass.prototype = new Subclass;
Klass.superclass = Superclass;
Klass.prototype.constructor = Klass;
return Klass.addPlugins(deferred._plugins);
};
return deferred;
}
最佳答案
1:调用def('Person')
返回一个函数,该函数以对象作为参数调用。其原理与:
function x() {
return function(y) { alert(y); }
}
x()('Hello world!');
2:<<
运算符是左移运算符。它将整数值向左移动特定位数。我还没有找到任何其他用途的引用资料,并且在 Javascript 中没有运算符重载,所以我无法理解在函数上使用它。到目前为止,我觉得这是一个错字。
正如 Tim 所解释的,移位运算符仅用于引发对 valueOf
的调用。方法。它的工作方式就像是所有运算符的重载,接管了最初的目的并做了一些完全不同的事情。
关于javascript - 这个我到现在都没见过的 JavaScript 语法,它到底做了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3255824/
我是一名优秀的程序员,十分优秀!