C++映射:预期在 ‘<’ 之前初始化代币

发布于 2024-11-17 23:38:01 字数 425 浏览 0 评论 0 原文

我在头文件中收到此错误:

错误:预期的初始化程序位于“<”之前令牌

class MyEntity;
typedef std::map<uint16,MyEntity*> myList_t;

我认为它没有看到地图包含,但在该头文件的顶部是:

#include <list>
#include <map>

在另一个头文件中:

typedef unsigned int               uint32;

有什么想法吗?

g++ (GCC) 4.1.2 20080704(红帽 4.1.2-48)

I'm getting this error in a header file:

error: expected initializer before ‘<’ token

class MyEntity;
typedef std::map<uint16,MyEntity*> myList_t;

I figured it's not seeing the map include, but at the top of that header file is:

#include <list>
#include <map>

In another header file:

typedef unsigned int               uint32;

Any ideas?

g++ (GCC) 4.1.2 20080704 (Red Hat 4.1.2-48)

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

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

发布评论

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

评论(2

不及他 2024-11-24 23:38:01

有一个名为 map 的宏导致了冲突。

There was a macro named map that was causing a conflict.

朮生 2024-11-24 23:38:01

在您的实际代码(不是简化的示例)中,您可能在 typedef 之前的行尾缺少 ;。这通常就是当我遇到这种神秘错误时的含义,并且我几乎可以通过在其上方放置另一个被低估的 typedef 来重现您的消息:

q.cc:8: error: expected initializer before 'typedef'

我的第一个猜测是 class MyEntity是一个完整的定义(不是前向声明)并且缺少 ; 但我得到了一个略有不同的错误。

In your actual code (not your simplified example) you are probably missing a ; from the end of the line before the typedef. This is usually what it means when I get that kind of cryptic error and I can almost reproduce your message by putting another underminated typedef above it:

q.cc:8: error: expected initializer before 'typedef'

My first guess was that class MyEntity was a full definition (not a forward declaration) and was missing the ; but I get a slightly different error for that.

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