c – 错误C2143:缺少’;’在’*’之前

你好我在互联网上到处寻找答案,但我找不到任何答案.

码:

#ifndef GAME_H
#define GAME_H

#include "drawEngine.h"
#include "sprite.h"
#include <iostream>
using namespace std;

class Game
{
public:
    bool run(void);

protected:
    bool getinput(char *c);
    void timerUpdate(void);

private:
    Sprite* player; // this gives me C2143

    double frameCount;
    double startTime;
    double lastTime;

    int posx;
    //int posy;
    DrawEngine drawArea;
};

#endif

我该如何解决

sprite.h

#ifndef GAME_H
#define GAME_H
#include "drawEngine.h"
#include "game.h"

enum
{
    SPRITE_CLASSID,};
struct vector
{
    float x;
    float y;

};

class Sprite
{
public:


    Sprite(DrawEngine *de,int s_index,float x = 1,float y = 1,int i_lives = 1);
    ~Sprite();
    vector getPosition(void);

    float getX(void);
    float getY(void);

    virtual void addLives(int num = 1);
    int getLives(void);
    bool isAlive(void);

    virtual bool move(float x,float y);

protected:

    DrawEngine *drawArea;
    vector pos;
    int spriteIndex;
    int numLives;
    int classID;
    vector facingDirection;
    void draw(float x,float y);
    void erase(float x,float y);

private:
};

#endif

解决方法

在这种情况下的问题似乎是Sprite不被识别为类型.更好看后,你遇到的问题是你定义:
#ifndef GAME_H
#define GAME_H
//...
#endif

在两个文件中.你可以在.cpp文件(或Game.h文件……第一个代码片段)中执行此操作,也可以在Sprite.h文件中执行此操作.问题是,在编译器进入Sprite.h时,GAME_H已经定义,因此,由于#ifndef例程,它不再编译Sprite.h文件.

解决它在Sprite.h文件中的更改,如下所示:

#ifndef SPRITE_H
#define SPRITE_H
//...
#endif

相关文章

/** C+⬑ * 默认成员函数 原来C++类中,有6个默认成员函数: 构造函数 析构函数 拷贝...
#pragma once // 1. 设计一个不能被拷贝的类/* 解析:拷贝只会放生在两个场景中:拷贝构造函数以及赋值运...
C类型转换 C语言:显式和隐式类型转换 隐式类型转化:编译器在编译阶段自动进行,能转就转,不能转就编译...
//异常的概念/*抛出异常后必须要捕获,否则终止程序(到最外层后会交给main管理,main的行为就是终止) try...
#pragma once /*Smart pointer 智能指针;灵巧指针 智能指针三大件//1.RAII//2.像指针一样使用//3.拷贝问...
目录&lt;future&gt;future模板类成员函数:promise类promise的使用例程:packaged_task模板类例程...