系统线程列表 @return
()
| 214 | * @return |
| 215 | */ |
| 216 | public static List<Thread> getJvmThreads() { |
| 217 | int activeCount = Thread.activeCount(); |
| 218 | Thread[] threads = new Thread[activeCount]; |
| 219 | Thread.enumerate(threads); |
| 220 | return Arrays.asList(threads); |
| 221 | } |
| 222 | |
| 223 | } |
nothing calls this directly
no outgoing calls
no test coverage detected