随笔分类 -  Java

摘要:Volatile Since Java 5 the volatile keyword guarantees more than just the reading from and writing to main memory of variables. Actually, the volatile 阅读全文
posted @ 2017-03-23 23:37 小张的练习室 阅读(307) 评论(0) 推荐(0) 编辑
摘要:ArrayList vs LinkedList vs Vector From the hierarchy diagram, they all implement List interface. They are very similar to use. Their main difference i 阅读全文
posted @ 2017-03-16 20:27 小张的练习室 阅读(239) 评论(0) 推荐(0) 编辑
摘要:HashMap 是线程不安全的,主要对于写操作来说,两个以上线程同时写入Map会被互相覆盖。线程安全指的保证对同一个map的写入操作按照顺序进行,一次只能一个线程更改。比如向HashMap里put(key, value1)有可能key对应的是其他线程同时写入的value2 HashMap的遍历有两种 阅读全文
posted @ 2017-02-23 17:26 小张的练习室 阅读(1110) 评论(0) 推荐(0) 编辑
摘要:References: [1] http://dev.bizo.com/2013/04/sensible-defaults-for-apache-httpclient.html We have hit an issue recently that the httpClient is too slow 阅读全文
posted @ 2016-11-24 19:39 小张的练习室 阅读(241) 评论(0) 推荐(0) 编辑
摘要:1. Final keyword Once a variable X is defined final, you can't change the reference of X to another object, after the initialization. But you can chan 阅读全文
posted @ 2016-08-31 22:01 小张的练习室 阅读(208) 评论(0) 推荐(0) 编辑
摘要:Reference: [1] https://www.mkyong.com/regular-expressions/how-to-validate-ip-address-with-regular-expression/ Description Whole combination means, dig 阅读全文
posted @ 2016-08-26 22:26 小张的练习室 阅读(585) 评论(0) 推荐(0) 编辑
摘要:References: [1]. http://www.javaworld.com/article/2074481/java-concurrency/java-101--understanding-java-threads--part-4 thread-groups--volatility--and 阅读全文
posted @ 2016-06-06 23:37 小张的练习室 阅读(243) 评论(0) 推荐(0) 编辑
摘要:1. Enum Class 2. Use Enum Class 阅读全文
posted @ 2016-01-06 19:43 小张的练习室 阅读(160) 评论(0) 推荐(0) 编辑
摘要:If a file has content like which are all key-value pairs, we could use properties.load() to parse it. The reason to use Thread.currentThread().getCont 阅读全文
posted @ 2015-10-12 21:52 小张的练习室 阅读(163) 评论(0) 推荐(0) 编辑
摘要:In a Maven project, we may often struggle to get a certain file (e.g. json file or sql file). Here is how to place the resource file and use it in the 阅读全文
posted @ 2015-10-08 21:25 小张的练习室 阅读(227) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示