06 2023 档案

摘要:在Java中有阻塞`wait()`和唤醒`notify()`方法,于是想实现一个简易的阻塞队列 当队列满时,阻塞生产方法等待消费;当队列为空时,阻塞消费队列等待生产 ``` public class BlockQueueTest { int max ; //维护一个队列 final Queue qu 阅读全文
posted @ 2023-06-26 14:24 阿弱 阅读(9) 评论(0) 推荐(0) 编辑
摘要:Mybaits的一次源码跟踪 阅读全文
posted @ 2023-06-17 21:13 阿弱 阅读(120) 评论(0) 推荐(0) 编辑
摘要:FileBeat简单使用和原理 阅读全文
posted @ 2023-06-16 19:52 阿弱 阅读(41) 评论(0) 推荐(0) 编辑