- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试使用 const
声明一组常量。我的问题是在 Firebug 控制台中测试代码会引发错误,提示“重新声明 const foo”。
我尝试将它包装在 try{}catch(e){}
block 中,但这没有帮助,甚至在尝试使用以下代码绕过它时(减号发布)所有的 console.info() “调试”要求清晰)它在第二次运行时仍然抛出错误:
if(!chk_constsDeclaredYet) {
var chk_constsDeclaredYet = true;
const foo="bar";
}
我的问题是,虽然 const 在 if(){} 中,但当代码第二次“运行”时,为什么还要查看 const foo?
注意:代码将在 firebug javascript 控制台中运行,我试图实现的工作流程是:
Firebug 输出:
//FIRST RUN::
>>> console.group() console.info('--code start--'); ...console.info('--code end--'); console.groupEnd()
--code start--
chk_constsDeclaredYet = undefined
foo = undefined
--if()--
--if() running..--
--end if()--
chk_constsDeclaredYet = true
foo = bar
--code end--
//SECOND RUN::
>>> console.group() console.info('--code start--'); ...console.info('--code end--'); console.groupEnd()
TypeError: redeclaration of const foo { message="redeclaration of const foo", more...}
最佳答案
这是一个古老的答案。我写了一个slightly newer answer处理类似的“const 重新分配/作用域”问题,其中我显示产生的错误(如果有的话)因执行方法和浏览器而异。
由于 const
(不是 ECMAScript 第五版标准的一部分)在 ECMAScript 第六版中具有不同的含义,我建议在当前版本中避免使用它代码。
const
,如 var
是“函数作用域”。我怀疑问题是由 binding 上与 var
发生的相同类型的“函数顶部”提升引起的(这解释了为什么异常不是来自赋值而是来自声明)。也就是说,任何后续的 const x = ...
,无论它们出现在哪里,都被认为是无效的,因为先前的声明已经存在(根据定义,只能有 < em>每个作用域一个给定名称的常量)。但是,const
可以取任何值,因此 赋值 发生在 const x = ...
站点,就像赋值发生在var x = ...
站点,即使注释/绑定(bind)被提升到范围的顶部。
这是一个简单的测试用例,可以更清楚地说明问题:
function x () { if (true) { const a = 1 } else { const a = 2 }}
// => TypeError: redeclaration of const a @ <x-jsd:interactive-session
如您所见,错误发生在函数声明处,不发生在函数执行时。这就是 try/catch 不起作用的原因。行为也可能受到您正在处理的交互式工具的影响,具体取决于它如何执行代码(例如,每次都是相同的执行上下文?)。
然而,这很好用并强化了上面的初始命题:
(function x() { if (false) { const c = 1 }; return c })()
// => undefined
来自 https://developer.mozilla.org/en/JavaScript/Reference/Statements/const
(添加了粗体强调)
Creates a constant that can be global or local to the function in which it is declared. Constants follow the same scope rules as variables.
The value of a constant cannot change through re-assignment, and a constant cannot be re-declared. Because of this, although it is possible to declare a constant without initializing it, it would be useless to do so.
A constant cannot share its name with a function or a variable in the same scope.
const is a Mozilla-specific extension, it is not supported by IE, but has been partially supported by Opera since version 9.0 and Safari.
关于javascript - 为什么 const 在 if() 或 try{}catch(e){} 中多次运行代码时会抛出错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4158416/
我刚刚遇到了一个非常奇怪的行为。这是代码: // So far everything's fine val x: Try[Try[Unit]] = Try(Try{}) x: scala.util.T
“输出”是一个序列化的 OpenStruct。 定义标题 try(:output).try(:data).try(:title) 结束 什么会更好? :) 最佳答案 或者只是这样: def title
我有以下元组 - (t1,t2) :(Try,Try) 我想检查两者是否成功或其中之一是否失败,但避免代码重复。像这样的东西: (t1,t2) match { case (Success(v1),Su
是否必须放置内部 try-with-resources 或其中一个 try-with-resources 中的所有内容都会自动关闭? try (BasicDataSource ds = Bas
有一点特殊,尝试创建一段 try catch 代码来处理 GoogleTokenResponse,但编译器在 try 时抛出异常错误。有什么想法吗? 错误信息: | Loading Grails 2.
它几乎可以在所有语言中找到,而且我大部分时间都在使用它。 我不知道它是内部的,不知道它是如何真正起作用的。 它如何在任何语言的运行时在 native 级别工作? 例如:如果在 try 内部发生 sta
为什么在 readFile2() 中我需要捕获 FileNotFoundException 以及稍后由 close( ) 方法,并且在 try-with-resources(inside readfi
我正在使用 Apache POI 尝试读取 Word 文件,但即使您使用过 Apache POI,这仍然应该是可以回答的。在 HWPF.extractor 包中有两个对象:WordExtractor
如果try-catch的catch block 中抛出异常,那么finally block 会被调用吗? try { //some thing which throws error } cat
这个问题已经有答案了: What's the purpose of try-with-resources statements? (7 个回答) 已关闭 3 年前。 我一直在查看代码,并且已经看到了对
这个问题已经有答案了: What's the purpose of try-with-resources statements? (7 个回答) 已关闭 3 年前。 我一直在查看代码,并且已经看到了对
我正在使用 Try::Tiny尝试捕捉。 代码如下: use Try::Tiny; try { print "In try"; wrongsubroutine(); # undefi
我想知道这样的代码是否会在抛出异常后总是中断而不继续运行,因此代码不会继续执行第二个 temp.dodaj(b)。 Avto *a = new Avto("lambo",4); Avt
我知道在try子句中必须有一个与资源关联的变量声明。 但是除了被分配一个通常的资源实例化之外,它是否可以被分配一个已经存在的资源,例如: public String getAsString(HttpS
我有一个写的方法。此方法仅扫描用户输入的整数输入。如果用户输入一个字符值,它将抛出一个输入不匹配异常,这是在我的 Try-Catch 语句中处理的。问题是,如果用户输入任何不是数字的东西,然后抛出异常
我注意到这不会编译: PrintWriter printWriter = new PrintWriter("test.txt"); printWriter.append('a'); printWrit
我经常看到人们写这样的代码: try: some_function() except: print 'something' 当我认为这样做更干净时: try: some_functio
该应用程序将在第二个显示器上正常显示内容。问题是当我旋转 iPad 时内容不会在 iPad 上旋转。 看过: http://developer.apple.com/library/ios/#qa/qa
我正在学习 java,我发现我不喜欢的一件事通常是当我有这样的代码时: import java.util.*; import java.io.*; public class GraphProblem
我使用 C++ 有一段时间了,对普通的 try/catch 很熟悉。但是,我现在发现自己在 Windows 上,在 VisualStudio 中编码以进行 COM 开发。代码的几个部分使用了如下内容:
我是一名优秀的程序员,十分优秀!