使用 Java 获取可用处理器的数量
要获取 Java 中可用处理器的数量,我们使用 availableProcessors() 方法。java.lang.Runtime.availableProcessors() 方法返回 Java 虚拟机可用的处理器数量。在虚拟机的特定调用期间,此数字可能会变化。
声明 - java.lang.Runtime.availableProcessors() 方法声明如下 -
public int availableProcessors()
让我们编写一个程序来获取 Java 中的可用处理器数量 -
示例
public class Example { public static void main(String[] args) { // print statement at the start of the program System.out.println("Start..."); System.out.print("Number of available processors are: "); System.out.println( Runtime.getRuntime().availableProcessors()); } }
输出
Start... Number of available processors are: 32
广告