雪洗中关村

导航

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 26 下一页

2019年1月14日 #

Java 如何实现线程间通信?(notify、join、CountdownLatch、CyclicBarrier、FutureTask、Callable )

摘要: 转自:https://mp.weixin.qq.com/s?__biz=MzI4Njc5NjM1NQ==&mid=2247486499&idx=1&sn=d3f2d6959df7299bfbe2d663f6c4d353&chksm=ebd6330fdca1ba19316e89bedcaab01be8 阅读全文

posted @ 2019-01-14 18:18 雪洗中关村 阅读(453) 评论(0) 推荐(0) 编辑

文本解析-多线程-分片解析

摘要: https://github.com/butter-fly/big_file_read; 阅读全文

posted @ 2019-01-14 10:01 雪洗中关村 阅读(739) 评论(0) 推荐(0) 编辑

自定义ThreadPoolExecutor带Queue缓冲队列的线程池 + JMeter模拟并发下单请求

摘要: .原文:https://blog.csdn.net/u011677147/article/details/80271174 拓展: https://github.com/jwpttcg66/GameThreadPool/blob/85bb392151324e68addec355d85d9ce22b4 阅读全文

posted @ 2019-01-14 09:05 雪洗中关村 阅读(774) 评论(0) 推荐(0) 编辑

2019年1月11日 #

git 常用命令速查表(图文+表格)

摘要: 来源:https://www.cnblogs.com/kenshinobiy/p/4543976.html 全面的学习网址: https://git-scm.com/book/zh/v2 一、 Git 常用命令速查 git branch 查看本地所有分支git status 查看当前状态 git c 阅读全文

posted @ 2019-01-11 19:52 雪洗中关村 阅读(2010) 评论(0) 推荐(1) 编辑

小白python 安装

摘要: 小白python 安装: https://blog.csdn.net/qq_36667170/article/details/79275605 https://blog.csdn.net/nmjuzi/article/details/79075736 安装python库: https://jingy 阅读全文

posted @ 2019-01-11 18:36 雪洗中关村 阅读(132) 评论(0) 推荐(0) 编辑

2019年1月10日 #

Example [mybatis] 的用法

摘要: example.setOrderByClause(“字段名 ASC”);添加升序排列条件,DESC为降序 example.setDistinct(false)去除重复,boolean型,true为选择不重复的记录。 criteria.andXxxIsNull添加字段xxx为null的条件 crite 阅读全文

posted @ 2019-01-10 13:55 雪洗中关村 阅读(675) 评论(0) 推荐(0) 编辑

2019年1月4日 #

将本地项目上传到git/码云

摘要: GitHub下载克隆clone指定的分支tag代码 git clone --branch [tags标签] [git地址] 或者 git clone --b [tags标签] [git地址] git clone --branch v6.2.4 https://gitee.com/mirrors/el 阅读全文

posted @ 2019-01-04 16:34 雪洗中关村 阅读(329) 评论(0) 推荐(0) 编辑

2019年1月2日 #

map遍历的几种方式和效率问题

摘要: 一、map遍历的效率 先创建一个map,添加好数据: Map<String, String> map = new HashMap<>();for (int i = 0; i < 1000000; i++) { map.put(i + "", i + "AA");}1、keySet的for循环方式: 阅读全文

posted @ 2019-01-02 20:18 雪洗中关村 阅读(2853) 评论(0) 推荐(1) 编辑

HashMap的四种遍历方法,及效率比较(简单明了)

摘要: https://yq.aliyun.com/ziliao/210955 输出结果: 第一种方法耗时:101918微秒第二种方法耗时:49042微秒第三种方法耗时:82706微秒第四种方法耗时:75093微秒 把上述的1000000改成10,输出结果如下: 第一种方法耗时:806微秒第二种方法耗时:4 阅读全文

posted @ 2019-01-02 20:16 雪洗中关村 阅读(7972) 评论(0) 推荐(2) 编辑

Map 按Key排序 和 按Value排序

摘要: https://www.cnblogs.com/binz/p/6671917.html 一、根据value排序 通用方法 java7 java8 二、根据key排序 阅读全文

posted @ 2019-01-02 20:07 雪洗中关村 阅读(182) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 26 下一页