含雪幸福

导航

 

2019年7月1日

摘要: Java的concurrent包里面的CountDownLatch其实可以把它看作一个计数器,只不过这个计数器的操作是原子操作,同时只能有一个线程去操作这个计数器,也就是同时只能有一个线程去减这个计数器里面的值。 CountDownLatch的计数器只能使用一次 你可以向CountDownLatch 阅读全文
posted @ 2019-07-01 16:46 含雪幸福 阅读(167) 评论(0) 推荐(0) 编辑
 
摘要: 原文来自:https://blog.csdn.net/Somhu/article/details/78614783 https://www.relaxheart.cn/to/master/blog?uuid=83 CountDownLatch 用法 CountDownLatch是java.util. 阅读全文
posted @ 2019-07-01 16:21 含雪幸福 阅读(267) 评论(0) 推荐(0) 编辑
 
 
/*生成博客目录的CSS*/ #uprightsideBar{ font-size:12px; font-family:Arial, Helvetica, sans-serif; text-align:left; position:fixed;/*将div的位置固定到距离top:50px,right:0px的位置,这样div就会处在最右边的位置,距离顶部50px*/ top:50px; right:0px; width: auto; height: auto; } #sideBarTab{ float:left; width:30px; border:1px solid #e5e5e5; border-right:none; text-align:center; background:#ffffff; } #sideBarContents{ float:left; overflow:auto; overflow-x:hidden;!important; width:200px; min-height:108px; max-height:460px; border:1px solid #e5e5e5; border-right:none; background:#ffffff; } #sideBarContents dl{ margin:0; padding:0; } #sideBarContents dt{ margin-top:5px; margin-left:5px; } #sideBarContents dd, dt { cursor: pointer; } #sideBarContents dd:hover, dt:hover { color:#A7995A; } #sideBarContents dd{ margin-left:20px; }