이봐 기능이 밀리 초 걸리는 시간을 계산하는 QueryPerformanceCounter에를 사용하여 메신저하지만 난이 런타임 오류가 점점 오전 :QueryPerformanceCounter에 런타임 오류
Run-Time Check Failure #2 - Stack around variable 'time1' is corrupted.
필자 검색하고 모든 노력을하고 난 알아낼 수 없습니다 이 오류. 아무도 나를 도울 수 있습니까? 7
void print()
{
unsigned long int time1 = 0;
unsigned long int time2 = 0;
QueryPerformanceCounter((LARGE_INTEGER*)&time1);
//Loop through the elements in the array.
for(int index = 0; index < num_elements; index++)
{
//Print out the array index and the arrays elements.
cout <<"Index: " << index << "\tElement: " << m_array[index]<<endl;
}
//Prints out the number of elements and the size of the array.
cout<< "\nNumber of elements: " << num_elements;
cout<< "\nSize of the array: " << size << "\n";
QueryPerformanceCounter((LARGE_INTEGER*)&time2);
cout << "\nTime Taken : " << time1 - time2 <<endl;
}
중복 가능성 [사용 방법 QueryPerformanceCounter에?] (http://stackoverflow.com/questions/1739259/how-to- use-queryperformancecounter) –