摘要: public class SortedPrintMore extends Thread{ //由于是不同的Thread n最好是共享 //无锁化 int i; static int n; static Lock lock = new ReentrantLock(); static Condition 阅读全文
posted @ 2021-08-31 12:18 常熟阿诺 阅读(30) 评论(0) 推荐(0) 编辑
摘要: package offer; import java.util.concurrent.locks.ReentrantLock; /** * @DATE: 2021-08-31 * @TIME: 10:11 * @FUNCTION: 按序打印abc 因为是abc 所以需要引入属性 v2 无锁 */ p 阅读全文
posted @ 2021-08-31 12:13 常熟阿诺 阅读(41) 评论(1) 推荐(1) 编辑
摘要: public class SortedPrint implements Runnable{ int n; @Override public synchronized void run(){ //有个唤醒机制 while(true){ if(n>100) return; System.out.prin 阅读全文
posted @ 2021-08-31 10:10 常熟阿诺 阅读(14) 评论(0) 推荐(0) 编辑