摘要: concurrentHashMap 线程池的几种常见的创建的方式 阅读全文
posted @ 2017-02-17 19:22 StevenLuke 阅读(70) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/u014033756/article/details/505998791、HashSet底层是采用HashMap实现的。HashSet 的实现比较简单,HashSet 的绝大部分方法都是通过调用 HashMap 的方法来实现的,因此 Has... 阅读全文
posted @ 2017-02-17 19:21 StevenLuke 阅读(332) 评论(0) 推荐(0) 编辑
摘要: refer to :http://www.cnblogs.com/inspurhaitian/p/4647485.html我是一名java开发人员,hibernate以及mybatis都有过学习,在java面试中也被提及问道过,在项目实践中也应用过,现在对hibernate和myb... 阅读全文
posted @ 2017-02-17 17:32 StevenLuke 阅读(113) 评论(0) 推荐(0) 编辑
摘要: poj3176//648k, 32ms#include using namespace std;const int MAX_N = 355;int way[MAX_N][MAX_N];int n;int max(int a, int b) { return a>b ? a :... 阅读全文
posted @ 2017-02-17 13:18 StevenLuke 阅读(101) 评论(0) 推荐(0) 编辑