2017-11-27 21 views
-4

나는 실행을 시도한 프로젝트가 있으며 30 % 이상의 CPU를 낭비했다. 왜?내 C++ 프로그램이 너무 많은 CPU를 소비합니까?

코드는 바로 가기 프로그램 및 일부 미리 알림 용입니다.

내가 10 코어 인텔/i7의 비주얼 스튜디오 2017 C++ 윈도우를 사용하고

명령 행 :

/Yu"stdafx.h "/ GS/analyze-/W3/ZC : wchar_t를/ZI/"WIN32"/ D "_DEBUG"/ D "_CONSOLE"/ D "_UNICODE"/ D "UNICODE"/ errorReport :/Gm/Od/sdl /Fd/Debug\vc141.pdb "/ Zc : 인라인/fp : 프롬프트/WX-/Zc : forScope/RTC1/Gd/Oy-/MDd/Fa "Debug \"/ EHsc/nologo/Fo "Debug \"/Fp"Debug\Clear.pch "/ diagnostics : classic

코드 :

#include "stdafx.h" 
#include <Windows.h> 
#include <shellapi.h> 

bool pressed(int key) { return GetAsyncKeyState(key); } 
namespace Main { 
///to hide the console 
void Main() 
{ 
      SetWindowPos(GetConsoleWindow(), nullptr, 0, 0, 0, 0, SWP_HIDEWINDOW); 
} 
///the shortcuts 
void Main1() { 
    while (true) { 
     ///Win-C = chrome 
     if (pressed(VK_LWIN)&&pressed('C')) system("chrome http://www.google.com"); 
     ///Menu = battery message 
     if (pressed(VK_APPS)) { 
      SYSTEM_POWER_STATUS a; 
      GetSystemPowerStatus(&a); 
      char title[15]; sprintf(title, "%d%% battery%s", a.BatteryLifePercent, a.BatteryFlag & 8 ? ", charging" : ""); 
      char disp[100]; sprintf(disp, "You have %d hours and %d minutes left...", a.BatteryLifeTime/3600 % 60, a.BatteryLifeTime/60 % 60); 
      MessageBoxA(nullptr, disp, title, 0); 
     } 
     if (pressed(VK_LWIN) && pressed(VK_DELETE)) SHEmptyRecycleBinA(nullptr, "", 0); 
     if (pressed(VK_LWIN) && pressed('V')) system("C:\\Users\\steven\\source\\repos\\Clear\\Clear.sln"); 
     if (pressed(VK_LWIN) && pressed('Z')) system("start cmd"); 
     Sleep(GetDoubleClickTime()); 
    } 
} 
///time 
void Main2() { 
    while (true) { 
     SYSTEMTIME t; 
     GetSystemTime(&t); 
     if (t.wDayOfWeek != 4 && t.wDayOfWeek != 5 && t.wHour == 0 && t.wMinute == 0 && t.wSecond == 0 && t.wMilliseconds == 0) MessageBoxA(nullptr, "Its 00:00", "Sleep", 0); 
     if (t.wDayOfWeek == 0 && t.wHour == 15 && t.wMinute == 10 && t.wSecond == 0 && t.wMilliseconds == 0) MessageBoxA(nullptr, "Go to the Technion", "תירגול", 0); 
     if ((t.wDayOfWeek == 1 || t.wDayOfWeek == 2) && t.wHour == 12 && t.wMinute == 25 && t.wSecond == 0 && t.wMilliseconds == 0) MessageBoxA(nullptr, "Go to the lab", "Math is over", 0); 
     if (t.wDayOfWeek == 3 && t.wHour == 9 && t.wMinute == 35 && t.wSecond == 0 && t.wMilliseconds == 0) MessageBoxA(nullptr, "Go to the class", "Math is over", 0); 
     if (t.wDayOfWeek == 4 && t.wHour == 10 && t.wMinute == 50 && t.wSecond == 0 && t.wMilliseconds == 0) MessageBoxA(nullptr, "Go to the class", "Math is over", 0); 
    } 
} 
///the exit shortcut 
void Main0() { 
    while (true) { 
     if (pressed(VK_LMENU) && pressed(VK_RMENU)) if (MessageBoxA(nullptr, "Do you want to exit?", "ShortCut", MB_YESNO|MB_ICONINFORMATION) == IDYES) exit(0); 
     Sleep(GetDoubleClickTime()); 
     } 
    } 
} 
#include <thread> 
using namespace std; 
int main(){ 
using namespace Main; 
thread a[4]={thread(Main), thread(Main0), thread(Main1), thread(Main2)}; 
for(thread& b:a) b.join(); 
return 0;} 
+0

함수'Main2'는 busy 루프를 포함하고 있습니다 : 멈추지 않고 무한 루프로 연속적으로 처리되어 CPU 사용량이 100 %가됩니다. – Jesper

+3

또한 디버그 모드로 구축 중이므로 성능에 대해 의문이 생깁니다. – UnholySheep

답변

3

Main2()매우 프로세서 집약적 인 것처럼 엄격한 루프입니다.

미가공 된 수정 프로그램으로 해당 스레드에서도 Sleep을 고려하십시오.

+0

Tnx! 그것은 일했다! –

1

올바른 방법은 프로필러와 함께하는 것입니다. Visual Studio에는 하나의 연습이 있어야하는 내장이 있습니다. 높은 CPU를 강조 할뿐만 아니라, 또한 어떤 스레드.

이 예에서 어떤 스레드가 사용자의 질문에 대답하기에 충분한 정보인지 알 수 있습니다. 스레드 된 코드를 작성할 계획이라면 스레딩이 매우 복잡하고 빠르기 때문에 VS에서 더 많은 도구를 사용하여 그립을 잡아야합니다.