具有结构错误值的 std::map

Posted

技术标签:

【中文标题】具有结构错误值的 std::map【英文标题】:std::map with value of struct error 【发布时间】:2014-08-09 16:24:09 【问题描述】:

我使用 Visual Studio Express 2013 并尝试运行此代码:

struct opcode 
    int length; 
;

std::map<int, struct opcode> opcodes;

opcodes[0x20] = 
    3
;

我收到此错误: error C2040: 'opcodes' : 'int [32]' differs in levels of indirection from 'std::map&lt;int,opcode,std::less&lt;_Kty&gt;,std::allocator&lt;std::pair&lt;const _Kty,_Ty&gt;&gt;&gt;'

当我将鼠标悬停在opcodes 上时,我得到了这个this declaration has no storage class or type specifier

解决方案

我的问题是我把语句放在了函数之外。

【问题讨论】:

您缺少此问题的visual-studio、visual-studio-express 和visual-studio-2013 标签。 :) @jotik 我不确定这有多重要。这主要是一个直接的 C++ 问题。 我更新了问题标签。从命令行来看,这似乎真的是一个与视觉工作室相关的问题,一切都很好。 @jotik,我已经完成了,没有给出任何警告。 这是一个长镜头,但请尝试不使用 struct 关键字的 std::map&lt;int, opcode&gt; opcodes;。也许这会让编译器感到困惑。 @jotik,没有struct 关键字就没有运气。 【参考方案1】:

在 C++ 语言中,语句(即“实际代码”)必须位于函数内部。这个

opcodes[0x20] = 
    3
;

是一个声明。您不能在不声明函数的情况下将其放入文件中。您不能只在文件中间编写 C++ 代码(即语句)。

你可以在函数之间的“空白”中做的就是写声明。因此,您上面的语句被编译器解释为声明。因此来自编译器的奇怪错误消息。

如果您希望这是一个声明,它应该如下所示(例如)

int main()

  opcodes[0x20] =  3 ;    

但是,您可以通过使用 initializer(它是声明的一部分)在不使用函数的情况下实现相同的效果

std::map<int, struct opcode> opcodes =   0x20,  3   ;

【讨论】:

你让我大开眼界!谢谢! @lukas.pukenis 也许你想要std::map&lt;int, opcodes&gt; opcodes = 0x20, 3; 我的问题是我把它放在main() 函数(或任何其他函数)之外,正如@AndreyT 所说,语句不能单独存在 @lukas.pukenis 我认为您仍然可以在命名空间范围内使用std::map&lt;int, opcodes&gt; opcodes0x20, 3;,因为它是一个定义。

以上是关于具有结构错误值的 std::map的主要内容,如果未能解决你的问题,请参考以下文章

将结构插入地图时出现分段错误

如何初始化一个以结构为值的地图?

C ++:访问unordered_map中的数据时出现段错误以设置

在字符串的 std::map 中查找编译错误,长

std::unordered_map 不断导致错误,这是一个错误吗?

使用 std::map/boost::unordered_map 帮助理解段错误