这个错误莫名其妙地发生了。这是代码和输出:
timer.cpp:
#include "timer.h"
#include "SDL.h"
#include "SDL_timer.h"
void cTimer::recordCurrentTime()
{
this->previous_t = this->current_t;
this->current_t = SDL_GetTicks();
}
timer.h:
#include "SDL.h"
#include "SDL_timer.h"
class cTimer
{
private:
int previous_t;
int current_t;
float delta_time;
float accumulated_time;
int frame_counter;
public:
void recordCurrentTime();
float getDelta();
void incrementAccumulator();
void decrementAccumulator();
bool isAccumulatorReady();
void incrementFrameCounter();
void resetFrameCounter();
int getFPS();
};
编译器错误:
make g++ -Wall -I/usr/local/include/SDL -c timer.cpp timer.cpp: In member function ‘void cTimer::recordCurrentTime()’: timer.cpp:6: error: ‘class cTimer’ has no member named ‘previous_t’ timer.cpp:6: error: ‘class cTimer’ has no member named ‘current_t’ timer.cpp:7: error: ‘class cTimer’ has no member named ‘current_t’ make: *** [timer.o] Error 1
删除#include“timer.h”后的编译器错误
g++ -Wall -I/usr/local/include/SDL -c ctimer.cpp ctimer.cpp:4: error: ‘cTimer’ has not been declared ctimer.cpp: In function ‘void recordCurrentTime()’: ctimer.cpp:5: error: invalid use of ‘this’ in non-member function ctimer.cpp:5: error: invalid use of ‘this’ in non-member function ctimer.cpp:6: error: invalid use of ‘this’ in non-member function make: *** [ctimer.o] Error 1
答案 0 :(得分:6)
适合我。你确定你有合适的timer.h
吗?试试这个:
cat timer.h
并确认它是您认为的。如果是这样,请尝试在^__^
文件的开头添加.h
,看看是否出现语法错误。看起来应该是这样的:
[/tmp]> g++ -Wall -I/tmp/foo -c timer.cpp
In file included from timer.cpp:1:
timer.h:1: error: expected unqualified-id before ‘^’ token
答案 1 :(得分:3)
这似乎很奇怪
class cTimer
{
private:
int previous_t;
int current_t;
float delta_time;
float accumulated_time;
int frame_counter;
public:
void recordCurrentTime();
float getDelta();
void incrementAccumulator();
void decrementAccumulator();
bool isAccumulatorReady();
void incrementFrameCounter();
void resetFrameCounter();
int getFPS();
};
void cTimer::recordCurrentTime()
{
this->previous_t = this->current_t;
this->current_t = SDL_GetTicks();
}
为我编译好。
这表明编译器认为cTimer与您在标题中的内容不同。也许它从另一个源文件中获取cTimer的定义?对于这种情况,您的“timer.h”将不必正确包含gettting。也许错误的timer.h。
检查此方法的一种方法是保存编译器预处理器输出并搜索cTimer。
另一种选择可能是在timer.h中输入语法错误,并确保编译失败。
无论如何希望这有帮助
答案 2 :(得分:1)
有些编译器有自己的timer.h,这是一个名称冲突。
或者这是一个奇怪的错误......
答案 3 :(得分:1)
尝试将timer.h和timer.cpp重命名为更具描述性的类,如ClassTimer.h和ClassTimer.cpp,也许编译器链接另一个名为'timer'的文件,因为它是一个非常通用的名称。也可以在timer.cpp中尝试这个:
void cTimer::recordCurrentTime(void)
{
this->previous_t = this->current_t;
this->current_t = SDL_GetTicks();
}
编辑:代码编辑