线程未获取到锁
当线程进入 synchronized 方法/块或者调用 wait 后(被 notify)重新进入 synchronized 方法/块,但是锁被其他线程占有,这个时候线程就会进入 BLOCKED(阻塞) 状态。