JavaScript 1.7 新鮮事
From MDC
JavaScript 1.7 是個程式語言上的更新,新推出了幾項新功能,諸如特定產生器 (generator)、迴圈器 (iterator)、陣列簡約式 (array comprehension)、let 表達式、以及跨結構指定 (destructuring assignment)。它也包含了所有 JavaScript 1.6 的功能。
從 Firefox 2 beta 1 起,以及目前的 Minefield 主幹 (trunk) 建造版,開始支援 JavaScript 1.7。
本文章使用的程式碼範例可以用 JavaScript shell 實驗。請參見 Introduction to the JavaScript shell 以得知如何建造及使用 shell。
目錄 |
[編輯] 使用 JavaScript 1.7
為了使用JavaScript 1.7的一些新功能,你必須載明你希望使用JavaScript 1.7。在HTML或XUL的原始碼中使用:
<script type="application/javascript;version=1.7"/>
當使用JavaScript shell,而你必須設定想用的版本時,可以利用version()函式:
version(170);
當碰到必須用到新關鍵字『yield』和『let』的情況時,你必須指定版本1.7,因為既有的程式可能會將那些關鍵字判讀為變數或函式的名字。當不需採用新關鍵字時(destructuring assignment and array comprehensions),可不必指定JavaScript的版本。
[編輯] 特定產生器 (generator) 與迴圈器 (iterator)
When developing code that involves an iterative algorithm (such as iterating over a list, or repeatedly performing computations on the same data set), there are often state variables whose values need to be maintained for the duration of the computation process. Traditionally, you have to use a callback function to obtain the intermediate values of an iterative algorithm.
[編輯] 特定產生器 (generator)
Consider this iterative algorithm that computes Fibonacci numbers:
function do_callback(num) {
document.write(num + "<BR>\n");
}
function fib() {
var i = 0, j = 1, n = 0;
while (n < 10) {
do_callback(i);
var t = i;
i = j;
j += t;
n++;
}
}
fib();
This code uses a callback routine to perform operations on each iterative step of the algorithm. In this case, each Fibonacci number is simply printed to the console.
Generators and iterators work together to provide a new, better, way to do this. Let's see how the Fibonacci number routine looks written using a generator:
function fib() {
var i = 0, j = 1;
while (true) {
yield i;
var t = i;
i = j;
j += t;
}
}
var g = fib();
for (var i = 0; i < 10; i++) {
document.write(g.next() + "<BR>\n");
}
The function containing the yield keyword is a generator. When you call it, its formal parameters are bound to actual arguments, but its body isn't actually evaluated. Instead, a generator-iterator is returned. Each call to the generator-iterator's next() method performs another pass through the iterative algorithm. Each step's value is the value specified by the yield keyword. Think of yield as the generator-iterator version of return, indicating the boundary between each iteration of the algorithm. Each time you call next(), the generator code resumes from the statement following the yield.
You cycle a generator-iterator by repeatedly calling its next() method until you reach your desired result condition. In this example, we can obtain however many Fibonacci numbers we want by continuing to call g.next() until we have the number of results we want.
[編輯] 迴圈器 (iterator)
An iterator is a special object that lets you iterate over data.
In normal usage, iterator objects are "invisible"; you won't need to operate on them explicitly, but will instead use JavaScript's for...in and for each...in statements to loop naturally over the keys and/or values of objects.
var objectWithIterator = getObjectSomehow();
for (var i in objectWithIterator)
{
document.write(objectWithIterator[i] + "<BR>\n");
}
If you are implementing your own iterator object, or have another need to directly manipulate iterators, you'll need to know about the next method, the StopIteration exception, and the __iterator__ property.
You can create an iterator for an object by calling Iterator(objectname); the iterator for an object is found via the object's __iterator__ property, which by default implements iteration according to the usual for...in and for each...in model. If you wish to provide a custom iterator, you should override the getter for __iterator__ to return an instance of your custom iterator. To get an object's iterator from script, you should use Iterator(obj) rather than accessing the __iterator__ property directly.
Once you have an iterator, you can easily fetch the next item in the object by calling the iterator's next() method. If there is no data left, the StopIteration exception is thrown.
Here's a simple example of direct iterator manipulation:
var obj = {name:"Jack Bauer", username:"JackB", id:12345, agency:"CTU", region:"Los Angeles"};
var it = Iterator(obj);
try {
while (true) {
document.write(it.next() + "<BR>\n");
}
} catch (err if err instanceof StopIteration) {
document.write("End of record.<BR>\n");
} catch (err) {
document.write("Unknown error: " + err.description + "<BR>\n");
}
The output from this program looks like this:
name,Jack Bauer username,JackB id,12345 agency,CTU region,Los Angeles End of record.
You can, optionally, specify a second parameter when creating your iterator, which is a boolean value that indicates whether or not you only want the keys returned each time you call its next() method. Changing var it = Iterator(obj); to var it = Iterator(obj, true); in the above sample results in the following output:
name username id agency region End of record.
In both cases, the actual order in which the data is returned may vary based on the implementation. There is no guaranteed ordering of the data.
Iterators are a handy way to scan through the data in objects, including objects whose content may include data you're unaware of. This can be particularly useful if you need to preserve data your application isn't expecting.
[編輯] 陣列簡約式 (array comprehension)
Array comprehensions are a use of generators that provides a convenient way to perform powerful initialization of arrays. For example:
function range(begin, end) {
for (let i = begin; i < end; ++i) {
yield i;
}
}
range() is a generator that returns all the values between begin and end. Having defined that, we can use it like this:
var ten_squares = [i * i for (i in range(0, 10))];
This pre-initializes a new array, ten_squares, to contain the squares of the values in the range 0..9.
You can use any conditional when initializing the array. If you want to initialize an array to contain the even numbers between 0 and 20, you can use this code:
var evens = [i for (i in range(0, 21)) if (i % 2 == 0)];
Prior to JavaScript 1.7, this would have to be coded something like this:
var evens = [];
for (var i=0; i <= 20; i++) {
if (i % 2 == 0)
evens.push(i);
}
Not only is the array comprehension much more compact, but it's actually easier to read, once you're familiar with the concept.
[編輯] 領域 (scoping) 規則
Array comprehensions have an implicit block around them, containing everything inside the square brackets, as well as implicit let declarations.
Add details.
[編輯] Block scope with let
有許多方式來使用let處理資料和函式的作用域:
-
letstatement提供一種方式把值和作用域中的變數、常數和函式連繫起來,卻不影響在作用域外同名變數的值。 -
letexpression讓你建立只對單一表達式有效的變數。 -
letdefinition定義的變數、常數和函式,其作用範圍受限於被定義的區塊。這個語法非常類似於var的用法。 - 你也可以用
let來建立在for迴圈中的變數。
[編輯] let 表達式
The let statement provides local scoping for variables, constants, and functions. It works by binding zero or more variables in the lexical scope of a single block of code. The completion value of the let statement is the completion value of the block.
For example:
var x = 5;
var y = 0;
let (x = x+10, y = 12) {
document.write(x+y + "<BR>\n");
}
document.write(x+y + "<BR>\n");
The output from this program will be:
27 5
The rules for the code block are the same as for any other code block in JavaScript. It may have its own local variables established using the let declarations.
let statement syntax, the parentheses following let are required. Failure to include them will result in a syntax error.[編輯] 領域 (scoping) 規則
用let所定義的變數其作用域即為let區塊本身,和其內部的區塊,除非內部區塊定義了相同名稱的變數。
[編輯] let 表達式
你可以利用let來建立只對單一表達式有效的變數:
var x = 5; var y = 0; document.write( let(x = x + 10, y = 12) x+y + "<BR>\n"); document.write(x+y + "<BR>\n");
結果為:
27 5
在這個例子中,將x指定為x+10和將y指定為12只對x+y這個表達式有效。
[編輯] 領域 (scoping) 規則
假設有一個let表示式:
let (decls) expr
有個暗含的區塊包圍著expr。
[編輯] let 定義
let關鍵字也可以被用來定義在區塊中的變數、常數和函式。
let definitions, please consider adding them here.
if (x > y)
{
let gamma = 12.7 + y;
i = gamma * x;
}
[編輯] 領域 (scoping) 規則
Variables declared by let have as their scope the block in which they are defined, as well as in any sub-blocks in which they aren't redefined. In this way, let works very much like var.
In programs and classes let does not create properties on the global object like var does; instead, it creates properties in an implicit block created for the evaluation of statements in those contexts. This essentially means that let won't override variables previously defined using var. For example:
** Doesn't work in FF 2.0 b1. Returns "42", not "global". var x = 'global'; let x = 42; document.write(this.x + "<BR>\n");
The output displayed by this code will display "global", not " 42".
An implicit block is one that is not bracketed by braces; it's created implicitly by the JavaScript engine.
In functions, let executed by eval() does not create properties on the variable object (activation object or innermost binding rib) like var does; instead, it creates properties in an implicit block created for the evaluation of statements in the program. This is a consequence of eval() operating on programs in tandem with the previous rule.
In other words, when you use eval() to execute code, that code is treated as an independent program, which has its own implicit block around its code.
[編輯] for 迴圈內的 let 領域變數
You can use the let keyword to bind variables locally in the scope of for loops, just like you can with var.
** Add obj **
var i=0;
for ( let i=i ; i < 10 ; i++ )
document.write(i + "<BR>\n");
for ( let [name,value] in obj )
document.write("Name: " + name + ", Value: " + value + "<BR>\n");
[編輯] 領域 (scoping) 規則
for (let expr1; expr2; expr3) statement
In this example, expr2, expr3, and statement are enclosed in an implicit block that contains the block local variables declared by let expr1. This is demonstrated in the first loop above.
for (let expr1 in expr2) statement for each(let expr1 in expr2) statement
In both these cases, there are implicit blocks containing each statement. The first of these is shown in the second loop above.
[編輯] 跨結構指定 (destructuring assignment)
Destructuring assignment makes it possible to extract data from arrays or objects using a syntax that mirrors the construction of array and object literals.
The object and array literal expressions provide an easy way to create ad-hoc packages of data. Once you've created these packages of data, you can use them any way you want to. You can even return them from functions.
One particularly useful thing you can do with destructuring assignment is to read an entire structure in a single statement, although there are a number of interesting things you can do with them, as shown in the section full of examples that follows.
This capability is similar to features present in languages such as Perl and Python.
[編輯] 範例
Destructuring assignment is best explained through the use of examples, so here are a few for you to read over and learn from.
[編輯] 避免暫時變數
You can use destructuring assignment, for example, to swap values:
var a = 1; var b = 3; [a, b] = [b, a];
After executing this code, b is 1 and a is 3. Without destructuring assignment, swapping two values requires a temporary variable (or, in some low-level languages, the XOR-swap trick).
Similarly, it can be used to rotate three or more variables:
var a = 'o';
var b = "<font color = 'green'>o</font>";
var c = 'o';
var d = 'o';
var e = 'o';
var f = "<font color = 'blue'>o</font>";
var g = 'o';
var h = 'o';
for (lp=0;lp<40;lp++)
{[a, b, c, d, e, f, g, h] = [b, c, d, e, f, g, h, a];
document.write(a+''+b+''+c+''+d+''+e+''+f+''+g+''+h+''+"<br />");}
After executing this code, a visual colorful display of the variable rotation will be displayed.
Returning to our Fibonacci generator example from above, we can eliminate the temporary "t" variable by computing the new values of "i" and "j" in a single group-assignment statement:
function fib() {
var i = 0, j = 1;
while (true) {
yield i;
[i, j] = [j, i + j];
}
}
var g = fib();
for (let i = 0; i < 10; i++)
print(g.next());
[編輯] 傳回多數值
Thanks to destructuring assignment, functions can return multiple values. While it's always been possible to return an array from a function, this provides an added degree of flexibility.
function f() {
return [1, 2];
}
As you can see, returning results is done using an array-like notation, with all the values to return enclosed in brackets. You can return any number of results in this way. In this example, f() returns the values [1, 2] as its output.
var a, b;
[a, b] = f();
document.write ("A is " + a + " B is " + b + "<BR>\n");
The command [a, b] = f() assigns the results of the function to the variables in brackets, in order: a is set to 1 and b is set to 2.
You can also retrieve the return values as an array:
var a = f();
document.write ("A is " + a);
In this case, a is an array containing the values 1 and 2.
[編輯] 在物件上迴圈
You can also use destructuring assignment to pull data out of an object:
var obj = { width: 3, length: 1.5, color: "orange" };
for (let[name, value] in obj) {
document.write ("Name: " + name + ", Value: " + value + "<BR>\n");
}
This loops over all the key/value pairs in the object obj and displays their names and values. In this case, the output looks like the following:
Name: width, Value: 3 Name: length, Value: 1.5 Name: color, Value: orange
[編輯] 在一陣列的物件上迴圈
You can loop over an array of objects, pulling out fields of interest from each object:
var people = [
{
name: "Mike Smith",
family: {
mother: "Jane Smith",
father: "Harry Smith",
sister: "Samantha Smith"
},
age: 35
},
{
name: "Tom Jones",
family: {
mother: "Norah Jones",
father: "Richard Jones",
brother: "Howard Jones"
},
age: 25
}
];
for each (let {name: n, family: { father: f } } in people) {
document.write ("Name: " + n + ", Father: " + f + "<BR>\n");
}
This pulls the name field into n and the family.father field into f, then prints them. This is done for each object in the people array. The output looks like this:
Name: Mike Smith, Father: Harry Smith Name: Tom Jones, Father: Richard Jones
[編輯] 忽略一些傳回的數值
You can also ignore return values that you're not interested in:
function f() {
return [1, 2, 3];
}
var [a, , b] = f();
document.write ("A is " + a + " B is " + b + "<BR>\n");
After running this code, a is 1 and b is 3. The value 2 is ignored. You can ignore any (or all) returned values this way. For example:
[,,,] = f();
[編輯] Pulling values from a regular expression match
When the regular expression
exec() method finds a match, it returns an array containing first the entire matched portion of the string and then the portions of the string that matched each parenthesized group in the regular expression. Destructuring assignment allows you to pull the parts out of this array easily, ignoring the full match if it is not needed.
// Simple regular expression to match http / https / ftp-style URLs. var parsedURL = /^(\w+)\:\/\/([^\/]+)\/(.*)$/.exec(url); if (!parsedURL) return null; var [, protocol, fullhost, fullpath] = parsedURL;
頁面分類: 待翻譯 | JavaScript