当前位置 : 主页 > 编程语言 > java >

Java查看PC线程资源

来源:互联网 收集:自由互联 发布时间:2022-07-07
public static void main ( String [] args ) { // 可用的线程数 System . out . println ( Runtime . getRuntime (). availableProcessors ()); // 当前线程数 System . out . println ( ForkJoinPool . commonPool (). getPoolSize ()); // 最大
public static void main(String[] args) {

// 可用的线程数
System.out.println(Runtime.getRuntime().availableProcessors());
// 当前线程数
System.out.println(ForkJoinPool.commonPool().getPoolSize());
// 最大线程数
System.out.println(ForkJoinPool.getCommonPoolParallelism());
}
  • 附加

六核十二线程是什么意思
就是十二个灶台 六个厨师 如果 相互影响 就只有六个厨师能工作



上一篇:java 开发 断言代码
下一篇:没有了
网友评论