我想在Windows上使用一个很棒的C ++计时器类:
http://www.songho.ca/misc/timer/timer.html
http://www.songho.ca/misc/timer/files/timer.zip
然而,当我尝试在VS2010上构建它时,它告诉我例如“endCount”没有声明。
然而,我可以看到它是。
“#ifded WIN32”部分并不是灰色的,所以我猜这部分是“触及”并执行。
#ifdef WIN32
LARGE_INTEGER frequency; // ticks per second
LARGE_INTEGER startCount; //
LARGE_INTEGER endCount; //
我想总的来说有些东西坏了,但我看不出来。
有人可能会看看这个项目,看看为什么会出错?
以下是cpp的一部分:
#include "Timer.h"
#include <stdlib.h>
#include "stdafx.h"
///////////////////////////////////////////////////////////////////////////////
// constructor
///////////////////////////////////////////////////////////////////////////////
Timer::Timer()
{
#ifdef WIN32
QueryPerformanceFrequency(&frequency);
startCount.QuadPart = 0;
endCount.QuadPart = 0;
#else
startCount.tv_sec = startCount.tv_usec = 0;
endCount.tv_sec = endCount.tv_usec = 0;
#endif
stopped = 0;
startTimeInMicroSec = 0;
endTimeInMicroSec = 0;
}
这是标题:
#ifndef TIMER_H_DEF
#define TIMER_H_DEF
#ifdef WIN32 // Windows system specific
#include <windows.h>
#include "stdafx.h"
#else // Unix based system specific
#include <sys/time.h>
#endif
class Timer
{
public:
Timer(); // default constructor
~Timer(); // default destructor
void start(); // start timer
void stop(); // stop the timer
double getElapsedTime(); // get elapsed time in second
double getElapsedTimeInSec(); // get elapsed time in second (same as getElapsedTime)
double getElapsedTimeInMilliSec(); // get elapsed time in milli-second
double getElapsedTimeInMicroSec(); // get elapsed time in micro-second
protected:
private:
double startTimeInMicroSec; // starting time in micro-second
double endTimeInMicroSec; // ending time in micro-second
int stopped; // stop flag
#ifdef WIN32
LARGE_INTEGER frequency; // ticks per second
LARGE_INTEGER startCount; //
LARGE_INTEGER endCount; //
#else
timeval startCount; //
timeval endCount; //
#endif
};
#endif // TIMER_H_DEF
答案 0 :(得分:3)
在VC中,忽略#include "stdafx.h"
之前的所有内容。在Timer.h
之后加入stdlib.h
和stdafx.h
。
答案 1 :(得分:2)
#include "stdafx.h"
应始终是.cpp文件中的第一个包含。包含在编译器之前将被跳过,因为它假定它们是预编译头的一部分。
答案 2 :(得分:0)
作为替代方案,禁用包含预编译的头文件。
在项目属性中 - &gt; C / C ++ - &gt;预编译标题。
将“Create / Use precompiled Header”设置为“Not using precompiled Headers”。