- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果有人能为我分解它,让我能理解它,我会非常感激。我知道它用于通过 apply 方法创建新对象。
Function.prototype.new = function () {
var args = arguments;
var constructor = this;
function Fake() {
constructor.apply(this, args)
};
Fake.prototype = constructor.prototype;
return new Fake;
};
最佳答案
基本上,new
函数用于从调用它的对象继承新创建对象的原型(prototype)方法。
// new function is defined on the Function prototype so,
// it can be called directly from any function
Function.prototype.new = function () {
// Caching the arguments array-like object
var args = arguments;
// this inside the new() refers to the function on which the `new` is called
var constructor = this;
// A fake constructor function/class
function Fake() {
// Calling the function with passing the context and the arguments
constructor.apply(this, args)
};
// Adding the prototype members of the function on which new is called
// On the new fake class
Fake.prototype = constructor.prototype;
// Retun new instance of the fake class
// Actually returning only the prototypes here
return new Fake;
};
关于Javascript - 新方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33053708/
如果有人能为我分解它,让我能理解它,我会非常感激。我知道它用于通过 apply 方法创建新对象。 Function.prototype.new = function () { var args
新版本的HADOOP中有一个方法。http://hadoop.apache.org/docs/current/api/org/apache/hadoop/fs/FileSystem.html#conc
根据支持库变更日志和 Fragment 类文档 ( https://developer.android.com/reference/android/support/v4/app/Fragment.ht
根据支持库更改日志和 Fragment 类文档 (https://developer.android.com/reference/android/support/v4/app/Fragment.htm
执行Async BigJob() 的无限运行任务的正确方法是什么?并且可以根据要求停止 提示:我正在尝试学习 [一种] 新方法来更新我现有的策略。 我有一个简单的程序(测试程序),它有一个开始 和停止
我将解释我的想法:我使用 python 作为谷歌应用程序引擎 + js + css 主项目将存储在 src 文件夹下,如下所示:\src \app <--- 这里是 gae 的所有 python 应用
我是一名优秀的程序员,十分优秀!