懦弱康乃馨

文章
4
资源
0
加入时间
2年10月21天

了解下es6中的let、const暂时性死区

关于TDZ(暂时性死区的小知识) # es6示例代码 es6中,下面的代码执行后会报ReferenceError: a is not defined的错误 let a = 'global'{ console.log(a) // ReferenceError: a is not defined let a = 1}原因: console.log(a) 中的 a 指的是下面的 a,而不是...

判断输入的是否为数字

public static void main(String[] args){ Scanner scanner = new Scanner(System.in); System.out.println("请输入一个数"); String next; double num = 0; while (true) { next = scanner.next(); if (next.equals("exit"))