为什么我会在一个声明中获得多种类型?

发布于 2024-12-01 01:34:31 字数 708 浏览 0 评论 0原文

这是我的课程:

#include <iostream>
#include "gameobject.h"
#include "IXmlAssigner.h"

#ifndef CHARACTER_H
#define CHARACTER_H
//line 7...
enum Race {HUMAN, DARK_ELF};
enum Gender {MALE, FEMALE};

class Character : public GameEntity, protected IXmlAssigner
{
public:
    Character();
    Character(std::string xmlCharID);
    ~Character();

    int get_id();
    std::string get_name();
    Race get_race();
    Gender get_gender();

    virtual void assign_xml(std::string xmlCharID);

protected:
    int char_id;
    static int char_count;
    std::string name;
    Race race;
    Gender gender;
};

#endif // CHARACTER_H

在第 7 行,它指出“一个声明中有多种类型”错误。这是为什么呢?我可以做些什么来改变它吗?

Here is my class:

#include <iostream>
#include "gameobject.h"
#include "IXmlAssigner.h"

#ifndef CHARACTER_H
#define CHARACTER_H
//line 7...
enum Race {HUMAN, DARK_ELF};
enum Gender {MALE, FEMALE};

class Character : public GameEntity, protected IXmlAssigner
{
public:
    Character();
    Character(std::string xmlCharID);
    ~Character();

    int get_id();
    std::string get_name();
    Race get_race();
    Gender get_gender();

    virtual void assign_xml(std::string xmlCharID);

protected:
    int char_id;
    static int char_count;
    std::string name;
    Race race;
    Gender gender;
};

#endif // CHARACTER_H

On line 7, it states the "multiple types in one declaration" error. Why is this? Is there anything I can do to change it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

〃安静 2024-12-08 01:34:31
#include "gameobject.h"
#include "IXmlAssigner.h"

您很可能在这些标头之一末尾的类或结构声明末尾缺少 ;

#include "gameobject.h"
#include "IXmlAssigner.h"

Most likely you're missing a ; at the end of a class or structure declaration at the end of one of these headers.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文