closures是什么意思,closures的意思翻译、用法、同义词、例句
类别
商务英语
常用词典
[经] 停业
封闭
例句
The government had failed to stem the tide of factory closures.
政府没有控制住工厂纷纷倒闭的势头。
The suggested closures came under assault from all parties.
关闭机构的建议受到各方严厉批评。
What's so special about closures?
闭包有什么特别之处?
Listing 2: Looping without closures.
清单2:不含闭包的循环。
But further closures will be hard to avoid.
但更多的工厂倒闭将难以避免。
常用搭配
crack closure
[化]裂纹闭合,裂缝闭合
transitive closure
传递闭包
closure error
闭合差;闭合误差
网络扩展资料
解释: 闭包指的是一个函数对象,它可以访问其词法作用域(lexical scope)内的变量,即使在该函数被执行后,该词法作用域已经不存在,闭包可以使得这些变量的值仍然保持在内存中。
例句:
JavaScript中的闭包可以用来避免变量污染,在一个函数内部定义另一个函数,这个函数可以访问外部函数的变量,但外部函数的变量不会被污染。
(The closures in JavaScript can be used to avoid variable pollution. A function can be defined inside another function, and this function can access the variables of the outer function without polluting them.)
闭包可以提供私有变量的实现,使得在函数外部无法访问函数内部的变量。
(Closures can provide the implementation of private variables, making it impossible to access the variables inside the function from outside.)
用法: 闭包可以用来实现封装、模块化、缓存等功能,也可以用来解决作用域问题。
近义词: 闭包的近义词包括函数闭包、函数嵌套、内部函数等。
反义词: 无闭包的反义词可以是简单的函数或变量,它们只能在定义的作用域内使用。