获取JVM GC次数 @return
()
| 201 | * @return |
| 202 | */ |
| 203 | public static long getJvmGcCount() { |
| 204 | long count = 0; |
| 205 | for (final GarbageCollectorMXBean garbageCollectorMXBean : LIST) { |
| 206 | count += garbageCollectorMXBean.getCollectionCount(); |
| 207 | } |
| 208 | return count; |
| 209 | } |
| 210 | |
| 211 | /** |
| 212 | * 系统线程列表 |
nothing calls this directly
no outgoing calls
no test coverage detected