1. 程式人生 > >c++獲取cpu資訊方法

c++獲取cpu資訊方法

intmain(int argv,char *argc[])
{
    CPUIDcpu;
 char*test;
 test=cpu.GetBrand();
 cout<<test<<endl;
 
 test=cpu.GetSerialNumber();
 if(test)
 {
 cout<<test<<endl;
 }
 else
 {
  cout<<"thecpu cann't support theserisenumber"<<endl;
 }
 
 test=cpu.GetVID();
 cout<<test<<endl;
 //