05 2018 档案

摘要:package cn.tt; public class ProducerConsumer { public static void main(String[] args) throws InterruptedException { SyncStack ss = new SyncStack(); Producer p = new Producer(ss);... 阅读全文
posted @ 2018-05-30 10:08 王子箫 阅读(125) 评论(0) 推荐(0) 编辑
摘要:我的桌面 阅读全文
posted @ 2018-05-25 11:51 王子箫 阅读(134) 评论(0) 推荐(0) 编辑
摘要:ECMAScript6的新特性 ECMA(欧洲计算机制造商协会) 1、let和const命令 1)let命令用来生命变量,用法类似于var,使用该命令申明的变量,只在let命令所在的代码块中有效。 2)js和其他开发语言相比,少了一个作用域。js没有严格意义上的作用域,因为js的变量提升。 3)co 阅读全文
posted @ 2018-05-25 00:21 王子箫 阅读(119) 评论(0) 推荐(0) 编辑