本文代码仓库:https://github.com/yu-linfeng/BlogRepositories/tree/master/repositories/sync 先来一道校招级并发编程笔试题 题目:利用5个线程并发执行,num数字累计计数到10000,并打印. /** * Description: * 利用5个线程并发执行,num数字累加计数到10000,并打印. * 2019-06-13 * Created with OKevin. */ public class Count { pri…
如果有一个父类,Demo如下 public class Demo { public void demo1(){ synchronized (Demo.class){ while (true){ System.out.println(Thread.currentThread()); } } } } 其中,代码块锁住的内容为父类的字节码对象,这个父类有两个子类继承其对象 public class DemoSon extends Demo implements Runnable{ @Override…