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