- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道 new
运算符是如何工作的,而不仅仅是学习如何使用它。我查看了 ECMAScript 5 standard并发现该算法描述了它是如何工作的,但对它的含义有点困惑。
The production
NewExpression : new NewExpression
is evaluated as follows:
- Let
ref
be the result of evaluating NewExpression.- Let
constructor
be GetValue(ref).- If
Type(constructor)
is notObject
, throw aTypeError
exception.- If
constructor
does not implement the[[Construct]]
internal method, throw aTypeError
exception.- Return the result of calling the
[[Construct]]
internal method onconstructor
, providing no arguments (that is, an empty list of arguments).
我试着用这个例子来理解上面的算法:
var f = function() {};
var h = new f();
特别是我不明白第一步,因此无法执行其他步骤。
- Let
ref
be the result of evaluating NewExpression.
var h = new f();
~~~ ~~~~
| \_________ NewExpression
new operator
这是否意味着 ref
是 f()
的值?但它是 undefined
。
3 . If
Type(constructor)
is notObject
, throw aTypeError
exception.
但是f
的类型是函数,会不会抛出TypeError
异常?
5 . Return the result of calling the
[[Construct]]
internal method onconstructor
, providing no arguments (that is, an empty list of arguments).
[[Construct]]
函数的内部属性,在constructor
上调用它是什么意思?
最佳答案
首先我们要弄清楚new NewExpression
是什么特别是 NewExpression
是。这可以在 Annex A 中找到.适用此规则的最常见情况是您不向构造函数传递参数。 IE。
var obj = new F;
哪里F
指一个函数。所以这是允许您省略括号的规则。
在您的示例 ( var h = new f();
) 中,您有括号,即您传递的是一个空参数列表,因此该算法不适用。 f()
不是 NewExpression
.
相反,此算法适用:new MemberExpression Arguments
.它的评估方式几乎相同,算法可以在 §11.2.2 中找到。同样,就在您引用的算法之后。
考虑到这一点,让我们逐步了解该算法:
1. Let
ref
be the result of evaluatingMemberExpression
.
在您的示例中,MemberExpression
, 是 f
,即它是一个变量。 The result of the evaluation是一个特殊的Reference目的。 什么在这里并不重要。只知道它包含有关如何实际从变量中获取值的信息。
所以现在ref
引用该引用。
2. Let
constructor
beGetValue(ref)
.
这是实际检索到的变量值 constructor
将引用 f
的函数指的是。
3. Let
argList
be the result of evaluatingArguments
, producing an internal list of argument values (11.2.4).
在你的例子中,Arguments
是()
因此它是一个空列表。
4. If
Type(constructor)
is notObject
, throw aTypeError
exception.
重要的是要知道函数也是对象!因此,如果在 new
中使用了原始值,此步骤将抛出错误。表达。
5. If
constructor
does not implement the[[Construct]]
internal method, throw aTypeError
exception.
所有函数(以及可能的其他对象)都实现内部 [[Construct]]
对新对象进行实际实例化的属性。如果对象没有这样的属性,则不能用作构造函数。 §13.2.2 中定义了函数的工作方式.
6. Return the result of calling the
[[Construct]]
internal method on constructor, providing the listargList
as the argument values.
这是实际施工发生的情况。 [[Construct]]
本身是函数并在 §13.2.2 中定义.该方法对于每个函数都是相同的,负责创建一个新对象,在该新对象上调用函数并返回它或函数返回的任何内容。
这是一个在 JavaScript 中的示例(部分伪代码):
[[Construct]] = function(F, argList) {
// Create new object that in inherits from F.prototype or Object.prototype
var proto = F.prototype;
var obj = Object.create(typeof proto === 'object' ? proto : Object.prototype);
// Call F with this set to obj and pass the argument list
var result = F.apply(obj, argList);
// If result is not an object, return the generated object
return typeof result === 'object' ? result : obj;
};
关于javascript - "new"关键字如何按照 ECMAScript 5 标准中的描述工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17379709/
我知道它们是匿名类型,但我不明白 Razor 语法。在一些文档中,我找到了这样的示例: @Html.Label("Hello", new { htmlAtributes = new { id = "h
关于:new Object(new Array()) 有一个相当基本的问题,我自己确实无法给出答案,我正在寻求建议: 在js中实例化对象时使用如下方法: var obj = new Object();
在eclipse中右击项目时,“新建文件夹”、“新建源文件夹”和“新建包”有什么区别?他们似乎都在做同样的事情,引用文献并没有说太多。 谢谢 最佳答案 新建文件夹 在项目中创建一个新文件夹。 新建源文
几天来我一直在测试 bolt-cms,我试图了解它是如何工作的。 我想知道新页面、新条目和新展示柜之间有什么区别。 我已阅读 this它并没有填补空白。 最佳答案 Pages、Entries 和 Sh
更新:感谢所有的回答。我发现的最干净的解决方案是这个: if ( k(Arrays.asList(new LinkedList<>())); 我有一个递归方法,可以从列表中生成所有“n 选 k”组合。
我现在想知道这些指令是如何分配内存的。 例如,如果我得到代码怎么办: x = new int[5]; y = new int[5]; 如果分配了这些,它在 RAM 中的实际情况如何?是为每个变量保留整
我希望将其写入output.txt而不清除它 - 只是附加到末尾。但是,当我使用以下两种方法时: public void addEmails(ArrayList emails){ for (i
我正在分配内存,稍后将用于构造具有放置 new 的对象。我应该使用 operator new(n),还是应该使用 new unsigned char[n]?为什么? 最佳答案 因素: new[] 必须
基本上,我的问题是以下代码是否有效。 void* mem = operator new(sizeof(T)); T* instance = new(mem) T; delete instance; 如
很抱歉,如果之前有人问过这个问题,但我想就以下两种用法之间的区别提供一个简明的答案。 VS 似乎将它们都接受为有效代码。 private static void doSomeWork() { /
请告诉我这段代码在做什么,它是否创建多维数组(我认为不是)? 代码片段.. var hanoi_peg = new Array( new Array( 5, 4, 3, 2, 1,
这个问题在这里已经有了答案: String intern() behaviour (4 个答案) When should we use intern method of String on Stri
许多人说您应该避免使用 new Object、new Array(),而是使用 {}。 [] 和真/假。 使用字面量构造来获取对象或数组的新实例而不是使用 new 有什么好处?我知道 Crockfor
我正在开发一个存在内存泄漏的开源库。该库是围绕 boost::asio 构建的数据流服务。服务器端使用堆内存管理系统,该系统提供内存以容纳有限数量的 samples,同时它们等待通过 tcp 连接被推
我从以下函数中得到内存泄漏: int ReadWrite(int socket, char *readfile) { FILE *rf = NULL; rf = fopen(readfile,
在考虑类似的事情时 auto x = new T; 标准是否强制要求内存必须来自operator new——类特定的还是全局的?也就是说,如果缺少特定于类的 operator new,则没有办法从除全
只是出于好奇:为什么 C++ 选择 a = new A 而不是 a = A.new 作为实例化对象的方式?后者不是更像是面向对象的吗? 最佳答案 Just out of curiosity: Why
考虑以下代码: typedef SomeType type_t[2]; SomeType * arr1 = new type_t; //new or new[] ??? type_t * arr2
这个问题在这里已经有了答案: Difference between 'new operator' and 'operator new'? (8 个答案) 关闭 8 年前。 面试题:"new"运算符和
我正在为一个应用程序设计界面,以在 TableLayout 中显示从数据库中提取的一些数据。现在,默认 View 是纵向的,它由一个下拉菜单和一个三列的表格组成。当用户切换到横向时,微调器及其选项可以
我是一名优秀的程序员,十分优秀!