随笔分类 -  java

摘要:The most common concurrency problem I've seen, is not realizing that a field written by one thread is not guaranteed to be seen by a different thread. 阅读全文
posted @ 2017-11-30 22:27 apanda009 阅读(160) 评论(0) 推荐(0)
摘要:http://algorithms.tutorialhorizon.com/binary-min-max-heap/ 阅读全文
posted @ 2017-11-05 08:36 apanda009 阅读(305) 评论(0) 推荐(0)
摘要:如何将字串 String 转换成整数 int? int i = Integer.valueOf(my_str).intValue(); int i=Integer.parseInt(str); 如何将字串 String 转换成Integer ?Integer integer=Integer.valu 阅读全文
posted @ 2017-10-28 23:23 apanda009 阅读(724) 评论(0) 推荐(0)