JavaScript/函数
函数是一段代码块,用于解决特定的问题并将其解决方案返回给调用语句。函数存在于自己的上下文中。因此,函数将庞大的程序划分为较小的“砖块”,从而构建软件以及软件开发过程。
// define a function
function <function_name> (<parameters>) {
<function_body>
}
// call a function
<variable> = <function_name> (<arguments>);
JavaScript 支持软件开发范式 函数式编程。函数是源自 Object 的数据类型;它们可以绑定到变量,作为参数传递,并从其他函数返回,就像任何其他数据类型一样。
函数可以通过三种主要方式构建。第一个版本可以进一步缩写;见下文。
传统方式
"use strict";
// conventional declaration (or 'definition')
function duplication(p) {
return p + "! " + p + "!";
}
// call the function
const ret = duplication("Go");
alert(ret);
通过变量和表达式构建
"use strict";
// assign the function to a variable
let duplication = function (p) {
return p + "! " + p + "!";
};
const ret = duplication("Go");
alert(ret);
通过 new
运算符构建(此版本有点繁琐)
"use strict";
// using the 'new' constructor
let duplication = new Function ("p",
"return p + '! ' + p + '!'");
const ret = duplication("Go");
alert(ret);
对于函数的声明,我们已经看到了三种变体。对于它们的调用,也有三种变体。声明和调用彼此独立,您可以任意组合它们。
传统的调用变体使用函数名后跟圆括号 ( )
。在圆括号内,是函数的参数,如果有的话。
"use strict";
function duplication(p) {
return p + "! " + p + "!";
}
// the conventional invocation method
const ret = duplication("Go");
alert(ret);
如果脚本在浏览器中运行,还有另外两种可能性。它们使用浏览器提供的 window
对象。
"use strict";
function duplication(p) {
return p + "! " + p + "!";
}
// via 'call'
let ret = duplication.call(window, "Go");
alert(ret);
// via 'apply'
ret = duplication.apply(window, ["Go"]);
alert(ret);
提示:如果您使用函数名而不带圆括号 ()
,您将收到函数本身(脚本),而不是任何调用结果。
"use strict";
function duplication(p) {
return p + "! " + p + "!";
}
alert(duplication); // 'function duplication (p) { ... }'
函数会受到“提升”的影响。这种机制会自动将函数的声明转移到其作用域的顶部。因此,您可以从源代码中比其声明位置更高的位置调用函数。
"use strict";
// use a function above (in source code) its declaration
const ret = duplication("Go");
alert(ret);
function duplication(p) {
return p + "! " + p + "!";
}
到目前为止,我们已经看到了声明和调用这两个独立的步骤。还有一种语法变体允许将两者结合起来。它的特点是在函数声明周围使用圆括号,后跟 ()
来调用该声明。
"use strict";
alert( // 'alert' to show the result
// declaration plus invocation
(function (p) {
return p + "! " + p + "!";
})("Go") // ("Go"): invocation with the argument "Go"
);
alert(
// the same with 'arrow' syntax
((p) => {
return p + "! " + p + "!";
})("Gooo")
);
这种语法被称为 立即调用函数表达式 (IIFE)。
调用函数时,声明阶段的参数将被调用的参数替换。在上面的声明中,我们使用了变量名 p
作为参数名。调用函数时,我们主要使用文字“Go”作为参数。在运行时,它会替换函数中 p
的所有出现。
这种替换是按 '值' 完成的,而不是按“引用”完成的。将参数的原始值的副本传递给函数。如果在函数内部更改了此副本的值,则函数外部的原始值不会更改。
"use strict";
// there is one parameter 'p'
function duplication(p) {
// In this example, we change the parameter's value
p = "NoGo";
alert("In function: " + p);
return p + "! " + p + "!";
};
let x = "Go";
const ret = duplication(x);
// is the modification of the argument done in the function visible here? No.
alert("Return value: " + ret + " Variable: " + x);
对于对象(所有非原始数据类型),这种“按值调用”可能会有令人惊讶的效果。如果函数修改了对象的属性,则此更改在外部也能看到。
"use strict";
function duplication(p) {
p.a = 2; // change the property's value
p.b = 'xyz'; // add a property
alert("In function: " + JSON.stringify(p));
return JSON.stringify(p) + "! " + JSON.stringify(p) + "!";
};
let x = {a: 1};
alert("Object: " + JSON.stringify(x));
const ret = duplication(x);
// is the modification of the argument done in the function visible here? Yes.
alert("Return value: " + ret + " Object: " + JSON.stringify(x));
当示例运行时,它表明在调用 duplication
后,函数所做的更改不仅在返回值中可见。此外,原始对象 x
的属性也已更改。为什么这样;它是否与处理原始数据类型的行为不同?不。
函数接收对对象的引用的副本。因此,在函数内部,引用的是同一个对象。该对象本身只存在一次,但有两个(相同的)对该对象的引用。修改该对象的属性是通过一个引用还是另一个引用,都没有区别。
另一个结果是 - 这可能与原始数据类型直观地相同 (?) - 修改引用本身,例如,通过创建新对象,在外部例程中将不可见。对新对象的引用存储在原始引用的副本中。现在我们不仅有两个(具有不同值)的引用,还有两个对象。
"use strict";
function duplication(p) {
// modify the reference by creating a new object
p = {};
p.a = 2; // change the property's value
p.b = 'xyz'; // add a property
alert("In function: " + JSON.stringify(p));
return JSON.stringify(p) + "! " + JSON.stringify(p) + "!";
};
let x = {a: 1};
alert("Object: " + JSON.stringify(x));
const ret = duplication(x);
// is the modification of the argument done in the function visible here? No.
alert("Return value: " + ret + " Object: " + JSON.stringify(x));
注意 1:这种参数传递技术的命名在不同的语言中并不一致。有时它被称为“按共享调用”。维基百科 概述了这一点。
注意 2:所描述的 JavaScript 参数传递的后果与使用关键字 const
的后果相比较,const
声明变量为常量。此类变量不能更改。但是,如果它们引用一个对象,则可以更改该对象的属性。
如果使用比函数包含的参数更少的参数调用函数,则多余的参数将保持为未定义。但是,您可以通过在函数签名中为这种情况分配一个值来定义默认值。缺失的参数将获得这些值作为默认值。
"use strict";
// two nearly identical functions; only the signature is slightly different
function f1(a, b) {
alert("The second parameter is: " + b)
};
function f2(a, b = 10) {
alert("The second parameter is: " + b)
};
// identical invocations; different results
f1(5); // undefined
f1(5, 100); // 100
f2(5); // 10
f2(5, 100); // 100
对于某些函数,它们涉及不同数量的参数是“正常的”。例如,考虑一个显示姓名的函数。firstName
和 familyName
必须在任何情况下都给出,但也可能需要显示 academicTitle
或 titleOfNobility
。JavaScript 提供了不同的可能性来处理这种情况。
可以检查“正常”参数以及附加参数以确定它们是否包含值。
"use strict";
function showName(firstName, familyName, academicTitle, titleOfNobility) {
"use strict";
// handle required parameters
let ret = "";
if (!firstName || !familyName) {
return "first name and family name must be specified";
}
ret = firstName + ", " + familyName;
// handle optional parameters
if (academicTitle) {
ret = ret + ", " + academicTitle;
}
if (titleOfNobility) {
ret = ret + ", " + titleOfNobility;
}
return ret;
}
alert(showName("Mike", "Spencer", "Ph.D."));
alert(showName("Tom"));
必须单独检查每个可能未给出的参数。
如果可选参数的处理结构相同,则可以使用rest 运算符语法简化代码 - 主要与循环结合使用。该特性的语法在函数签名中由三个点组成 - 类似于扩展语法。
它是如何工作的?作为函数调用的一部分,JavaScript 引擎将给定的可选参数组合成一个数组。(请注意,调用脚本不使用数组。)这个数组作为最后一个参数传递给函数。
"use strict";
// the three dots (...) introduces the 'rest syntax'
function showName(firstName, familyName, ...titles) {
// handle required parameters
let ret = "";
if (!firstName || !familyName) {
return "first name and family name must be specified";
}
ret = firstName + ", " + familyName;
// handle optional parameters
for (const title of titles) {
ret = ret + ", " + title;
}
return ret;
}
alert(showName("Mike", "Spencer", "Ph.D.", "Duke"));
alert(showName("Tom"));
调用中的第三个及所有后续参数将被收集到单个数组中,该数组在函数中作为最后一个参数可用。这允许使用循环并简化函数的源代码。
与 C 语言家族的其他成员一致,JavaScript 在函数中提供关键字 arguments
。它是一个类似数组的对象,包含函数调用中给定的所有参数。您可以循环遍历它或使用它的 length
属性。
它的功能与上面的rest 语法相当。主要区别在于 arguments
包含所有参数,而rest 语法不一定会影响所有参数。
"use strict";
function showName(firstName, familyName, academicTitles, titlesOfNobility) {
// handle ALL parameters with a single keyword
for (const arg of arguments) {
alert(arg);
}
}
showName("Mike", "Spencer", "Ph.D.", "Duke");
函数的目的是提供特定问题的解决方案。这个解决方案通过 return
语句返回给调用程序。
它的语法是 return <表达式>
,其中 <表达式>
是可选的。
函数运行直到它遇到 return
语句(或发生未捕获的异常,或在最后一个语句之后)。<表达式>
可以是一个简单的任何数据类型的变量,例如 return 5
,或一个复杂的表达式,例如 return myString.length
,或者完全省略:return
。
如果 return
语句中没有 <表达式>
,或者根本没有遇到 return
语句,则返回 undefined
。
"use strict";
function duplication(p) {
if (typeof p === 'object') {
return; // return value: 'undefined'
}
else if (typeof p === 'string') {
return p + "! " + p + "!";
}
// implicit return with 'undefined'
}
let arg = ["Go", 4, {a: 1}];
for (let i = 0; i < arg.length; i++) {
const ret = duplication(arg[i]);
alert(ret);
}
箭头函数是上述传统函数语法的简洁替代方案。它们缩写了某些语言元素,省略了其他元素,并且与原始语法相比,只有几个语义区别。
它们始终是匿名函数,但可以分配给变量。
"use strict";
// original conventional syntax
function duplication(p) {
return p + "! " + p + "!";
}
// 1. remove keyword 'function' and function name
// 2. introduce '=>' instead
// 3. remove 'return'; the last value is automatically returned
(p) => {
p + "! " + p + "!"
}
// remove { }, if only one statement
(p) => p + "! " + p + "!"
// Remove parameter parentheses if it is only one parameter
// -----------------------------
p => p + "! " + p + "!" // that's all!
// -----------------------------
alert(
(p => p + "! " + p + "!")("Go")
);
以下是一个使用数组的示例。forEach
方法循环遍历数组,并依次产生一个数组元素。这将传递给箭头函数的单个参数 e
。箭头函数显示 e
以及简短的文本。
"use strict";
const myArray = ['a', 'b', 'c'];
myArray.forEach(e => alert("The element of the array is: " + e));
其他编程语言在诸如匿名函数或 lambda 表达式之类的术语下提供箭头函数的概念。
函数可以调用其他函数。在实际应用程序中,这种情况很常见。
当函数调用自身时,会发生一种特殊情况。这称为递归调用。当然,这意味着存在无限循环的风险。您必须更改参数中的某些内容以避免此障碍。
通常,当应用程序处理树结构(如物料清单、DOM 树或家谱信息)时,就会出现对这种递归调用的需求。这里我们展示了简单的数学问题阶乘计算的实现方法。
阶乘是小于或等于某个数字的所有正整数的乘积,写成。例如, 。它可以通过从到的循环来解决,但它也有递归解。的阶乘是已经计算出的阶乘乘以,或者用公式表示: 。这种想法导致了相应函数的递归构造
"use strict";
function factorial(n) {
if (n > 0) {
const ret = n * factorial(n-1);
return ret;
} else {
// n = 0; 0! is 1
return 1;
}
}
const n = 4;
alert(factorial(n));
只要 大于 ,脚本会再次调用 factorial
,但这次使用 作为参数。因此,参数收敛到 。当达到 时,这是 factorial
函数第一次没有再次被调用。它返回 的值。这个数字乘以 factorial
上次调用时获得的下一个较大的数字。乘法的结果返回到 factorial
上次调用,……。