程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#獲取CPU處置器中心數量的辦法

C#獲取CPU處置器中心數量的辦法

編輯:C#入門知識

C#獲取CPU處置器中心數量的辦法。本站提示廣大學習愛好者:(C#獲取CPU處置器中心數量的辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是C#獲取CPU處置器中心數量的辦法正文


有幾條不同的處置器信息,您可以取得有關的信息:物理處置器數量、中心數量和邏輯處置器數量,這些可以不同。兩顆雙核超線程(啟用)處置器的機器狀況下有:2個物理處置器、4個中心和8個邏輯處置器。

邏輯處置器數是可經過Environment類獲取,但其他信息都是只可經過WMI(您能夠需求裝置一些修補順序或服務包)獲取:

物理處置器:

foreach (var item in new System.Management.ManagementObjectSearcher("Select * from Win32_ComputerSystem").Get())
{
 Console.WriteLine("Number Of Physical Processors: {0} ", item["NumberOfProcessors"]);
}

內核:

int coreCount = 0;
foreach (var item in new System.Management.ManagementObjectSearcher("Select * from Win32_Processor").Get())
{
 coreCount += int.Parse(item["NumberOfCores"].ToString());
}
Console.WriteLine("Number Of Cores: {0}", coreCount);

邏輯處置器:

Console.WriteLine("Number Of Logical Processors: {0}", Environment.ProcessorCount);

foreach (var item in new System.Management.ManagementObjectSearcher("Select * from Win32_ComputerSystem").Get())
{
 Console.WriteLine("Number Of Logical Processors: {0}", item["NumberOfLogicalProcessors"]);
}

以上就是本文的全部內容,希望本文的內容對大家的學習或許任務能帶來一定的協助,同時也希望多多支持!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved