这是一些源代码:
#include <map>
#include <string>
int main()
{
std::map<std::string, double> maps;
maps.emplace("Test", 1.0);
}
让我们尝试编译它:
[9:34am][wlynch@apple /tmp] /opt/gcc/4.8.2/bin/g++ -std=c++98 foo.cc
foo.cc: In function ‘int main()’:
foo.cc:7:10: error: ‘class std::map<std::basic_string<char>, double>’ has no member named ‘emplace’
maps.emplace("Test", 1.0);
^
[9:34am][wlynch@apple /tmp] /opt/gcc/4.8.2/bin/g++ -std=c++11 foo.cc
[9:34am][wlynch@apple /tmp]
请注意,当我们使用-std=c++11
它时,它会起作用。这是因为这是std::map::emplace()
2011 C++ 标准中添加的一项功能。
此外,我可以验证:
- g++ 4.7.3 不支持
std::map::emplace()
.
- g++ 4.8.0 确实支持
std::map::emplace()
.