What does “blocked Count” and “Waited Count” in a Java Thread mean?

前端 未结 2 427
一向
一向 2021-01-13 23:19

I use JConsole to watch a thread, it shows

name: Thread-6
state:BLOCKED  sun.misc.Launcher$AppClassLoader@19821f ,owner: Thread-3
blocked Count:199,645  Wai         


        
2条回答
  •  耶瑟儿~
    2021-01-14 00:02

    The total number of times that the thread blocked to enter or reenter a monitor.

提交回复
热议问题