Windows系統CPU記憶體網路效能統計第三篇 CPU 多核CPU各核使用率C#

來源:互聯網
上載者:User

本文配套程式為:http://download.csdn.net/detail/morewindows/5160822

轉載請標明出處,原文地址:http://blog.csdn.net/morewindows/article/details/8678382

歡迎關注微博:http://weibo.com/MoreWindows

 

Windows系統CPU記憶體網路效能統計第三篇 CPU 多核CPU各核使用率 C#

http://blog.csdn.net/morewindows/article/details/8678382

 

    前面《Windows系統CPU記憶體網路效能統計第二篇 CPU CPU整體使用率》介紹了在Windows XP及Windows 7系統下擷取CPU整體使用率,而目前大多數CPU都是多核CPU,因此本文來介紹如何擷取多核CPU下各核的使用率

Windows系統CPU記憶體網路效能統計部落格目錄:

1.Windows系統CPU記憶體網路效能統計第一篇記憶體

http://blog.csdn.net/morewindows/article/details/8459219

2.Windows系統CPU記憶體網路效能統計第二篇 CPU CPU整體使用率

http://blog.csdn.net/morewindows/article/details/8678359

3.Windows系統CPU記憶體網路效能統計第三篇 CPU 多核CPU各核使用率 C#

http://blog.csdn.net/morewindows/article/details/8678382

4.Windows系統CPU記憶體網路效能統計第四篇 CPU多核CPU各核使用率 C++

http://blog.csdn.net/morewindows/article/details/8678396

 

使用C#來擷取多核CPU下各核的使用率是非常方便的。短短几行就能搞定,並且程式能正常運行於Windows XP及Windows 7系統中。下面先給出代碼。

//Windows系統CPU記憶體網路效能統計第三篇 CPU 多核CPU各核使用率 C#// 經過測試,可以在WinXP及Win7下使用//http://blog.csdn.net/morewindows/article/details/8678382using System;using System.Diagnostics;using System.Threading;namespace ConsoleApplication1{    class Program    {        static void Main(string[] args)        {            Console.WriteLine("    Windows系統CPU記憶體網路效能統計第三篇 CPU 多核CPU各核使用率 C#");            Console.WriteLine(" - http://blog.csdn.net/morewindows/article/details/8678382 -");            Console.WriteLine(" -- By MoreWindows( http://blog.csdn.net/MoreWindows ) --\n");             PerformanceCounter[] counters = new PerformanceCounter[ System.Environment.ProcessorCount ];             for(int i = 0; i < counters.Length; i++)                    {                            counters[i] = new PerformanceCounter("Processor", "% Processor Time", i.ToString());             }                    while(true)                    {                          for(int i = 0; i < counters.Length; i++)                       {                                 float f = counters[i].NextValue();                       Console.Write("CPU-{0}: {1:f}%  ", i + 1, f);                     }                          Console.WriteLine();                        Thread.Sleep(1000);                   }           }    }}

由代碼可以看出,主要是使用了System.Diagnostics中的PerformanceCounter類。這個類的功能強大,可以查閱MSDN的得到詳細解釋。

 

在WinXP系統運行結果如下(本文配套程式為:http://download.csdn.net/detail/morewindows/5160822):

 

在Win7系統運行結果如下(本文配套程式為:http://download.csdn.net/detail/morewindows/5160822):

 

由本篇《Windows系統CPU記憶體網路效能統計第三篇 CPU 多核CPU各核使用率 C#》(http://blog.csdn.net/morewindows/article/details/8678382)可以看出,C#無疑是一門很方便的語言,對C/C++程式員來說,瞭解下C#是非常有協助的。

下一篇《Windows系統CPU記憶體網路效能統計第四篇 CPU多核CPU各核使用率 C++》(http://blog.csdn.net/morewindows/article/details/8678396)將介紹使用C++代碼來引用C#編寫的DLL來完成在C++下擷取多核CPU各核使用率。

 

本文配套程式為:http://download.csdn.net/detail/morewindows/5160822

轉載請標明出處,原文地址:http://blog.csdn.net/morewindows/article/details/8678382

歡迎關注微博:http://weibo.com/MoreWindows

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.