文章出處

Java Runtime.availableProcessors()方法用法實例教程。
 

描述

java.lang.Runtime.availableProcessors() 方法返回到Java虛擬機的可用的處理器數量。此值可能會改變在一個特定的虛擬機調用。應用程序可用處理器的數量是敏感的,因此偶爾查詢該屬性,并適當地調整自己的資源使用情況.

聲明

以下是聲明java.lang.Runtime.availableProcessors()方法

public int availableProcessors()

參數

  • NA

返回值

此方法返回到虛擬機的最大可用的處理器數量;決不會小于一個

異常

  • NA

實例

下面的例子說明了如何使用的lang.Runtime.availableProcessors()方法。

package com.yiibai;

public class RuntimeDemo {


   public static void main(String[] args) {
      
      // print a normal message
      System.out.println("Hello world!");
      
      // check the number of processors available
      System.out.println(""+Runtime.getRuntime().availableProcessors());
   }
}

讓我們來編譯和運行上面的程序,這將產生以下結果:

Hello world!
4

文章列表


不含病毒。www.avast.com
arrow
arrow
    全站熱搜
    創作者介紹
    創作者 大師兄 的頭像
    大師兄

    IT工程師數位筆記本

    大師兄 發表在 痞客邦 留言(0) 人氣()