摘要:
List<string> names = new List<string>() { "a00", "b00", "c00", "d00" }; dynamic obj = new DynObj(); obj.date = "2019-02-26"; obj.stories = names; stri 阅读全文
摘要:
普通输入流:68513ms 带缓冲的方式:116ms 随机访问读取:81203ms 磁盘映射读取方式:102ms 阅读全文
摘要:
1 Directory和File类只包含静态方法,不能被实例化 2 DirectoryInfo和FileInfo他们是有状态的,需要被实例化 阅读全文
摘要:
1 输入一个类名:java.lang.String将打印出String类定义的结构,例如: 主程序如下: 阅读全文
摘要:
LocalDate date=LocalDate.now(); int month=date.getMonthValue(); int today=date.getDayOfMonth(); date=date.minusDays(today-1); DayOfWeek weekDay= date.getDayOfWeek(... 阅读全文
摘要:
1 调用 int[] arr=new int[] {1,2,3,4,5,6,7,8,9,10}; int index= binarySearch(arr, 8); System.out.println("查找的值8位于数组中的索引为:"+index); 默认传入的数组是排好序的 阅读全文
摘要:
int[] arr= {6, 1, 2 ,7 ,9 ,3 ,4 ,5, 10 ,8}; int[] sortArr=Sort(arr,0,arr.length-1); 阅读全文
摘要:
Step1: 运行comexp.msc -32 注意因为excel 是32 位的,所以这里用的32位的操作, 如用64位的操作命令:dcomcnfg.exe,将找不到excel com 进入component service Step2, 找到excel设置安全属性 Step3->增加用户,赋予权限 阅读全文
摘要:
1 在前两篇笔记中已经能把开发环境弄好了,接来下构建他的生产环境 2 使用npm 安装url-loader和file-loader来支持图片和字体 npm install --save-dev url-loader npm install --save-dev file-loader 3 配置web 阅读全文
摘要:
1 package.json 2 webpack.config.js 阅读全文