获取Java虚拟机可用的处理器个数_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > 获取Java虚拟机可用的处理器个数

获取Java虚拟机可用的处理器个数

 2016/9/26 5:31:54  wangmengjun  程序员俱乐部  我要评论(0)
  • 摘要:如何获取Java虚拟机可用的处理器个数?Runtime类的Native方法#availableProcessors()已经提供了,只要通过Runtme类的实例调用即可。/***ReturnsthenumberofprocessorsavailabletotheJavavirtualmachine.**<p>Thisvaluemaychangeduringaparticularinvocationofthevirtual*machine
  • 标签:Java 虚拟机 处理器

?

如何获取Java虚拟机可用的处理器个数?

?

Runtime类的Native方法#availableProcessors()已经提供了,只要通过Runtme类的实例调用即可。

?

class="java">/**
     * Returns the number of processors available to the Java virtual machine.
     *
     * <p> This value may change during a particular invocation of the virtual
     * machine.  Applications that are sensitive to the number of available
     * processors should therefore occasionally poll this property and adjust
     * their resource usage appropriately. </p>
     *
     * @return  the maximum number of processors available to the virtual
     *          machine; never smaller than one
     * @since 1.4
     */
    public native int availableProcessors();

?

调用方法:

?

int availableProcessors = Runtime.getRuntime().availableProcessors();

?

发表评论
用户名: 匿名