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"]); }
以上就是本文的全部內容,希望本文的內容對大家的學習或許任務能帶來一定的協助,同時也希望多多支持!