std :: map - C++需要所有声明的类型说明符

use*_*490 3 c++ dictionary

我想填补一个std::map,但我得到2个编译器错误,我不知道原因是什么.

std::map<std::string, std::string> dirFull;
dirFull["no"] = "north";
dirFull["so"] = "south";
dirFull["ea"] = "east";
dirFull["we"] = "west";
dirFull["nw"] = "north-west";
dirFull["ne"] = "north-east";
dirFull["sw"] = "south-west";
dirFull["se"] = "south-east";
Run Code Online (Sandbox Code Playgroud)

这些是错误:

error: C++ requires a type specifier for all declarations
       dirFull["no"] = "north";
       ^
error: size of array has non-integer type 'const char[3]'
       dirFull["no"] = "north";
               ^~~~
Run Code Online (Sandbox Code Playgroud)


我也试过这个:

std::map<std::string, std::string> dirFull = { 
    {"no", "north"}, {"so", "south"},
    {"ea", "east"}, {"we", "west"},
    {"ne", "north-east"}, {"nw", "north-west"}, 
    {"se", "south-east"}, {"sw","south-west"} };
Run Code Online (Sandbox Code Playgroud)

这会导致完全不同类型的错误:

error: non-aggregate type 'std::map<std::string, std::string>' (aka '...') cannot be initialized with an initializer list 
std::map<std::string, std::string> dirFull = {
                                   ^         ~
Run Code Online (Sandbox Code Playgroud)

Bri*_*ain 8

您收到此错误是因为您尝试在文件范围内执行语句.在函数中定义这些赋值,您将不再获得这些错误.

如果要map在静态初始化期间填充此内容,可以使用boost::assignconstexpr初始化语法来执行此操作.

//requires c++11:
const map <string,string> dirFull = {
    {"no",   "north"},
    {"so",   "south"},
    {"ea",   "east"},
    {"we",   "west"},
    {"nw",   "north-west"},
    {"ne",   "north-east"},
    {"sw",   "south-west"},
    {"se",   "south-east"},
};
Run Code Online (Sandbox Code Playgroud)

  • 是的,确实如此,请确保添加了 `-std=c++11`(`g++` 或 `clang++`) (2认同)